1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00

Compare commits

..

14 commits

Author SHA1 Message Date
Matt Jankowski
e9ecfc7f42
Merge 0b274bd554 into 549ab089ee 2024-07-31 11:06:48 +00:00
Matt Jankowski
0b274bd554 Update test-prof to version 1.4.0.rc.4 2024-07-29 11:18:44 -04:00
Matt Jankowski
44c9e2cc04 Update test-prof to version 1.4.0.rc.3 2024-07-29 11:18:43 -04:00
Matt Jankowski
f1c47e5f34 Use test-prof 1.4.0.rc1 2024-07-29 11:18:43 -04:00
Matt Jankowski
229c800971 format 2024-07-29 11:18:43 -04:00
Matt Jankowski
a060a6b8bf cache store is memory store in test env 2024-07-29 11:18:43 -04:00
Matt Jankowski
aec78a7252 Restore default mail from 2024-07-29 11:18:43 -04:00
Matt Jankowski
85a761722c Use 7.2 defaults 2024-07-29 11:18:43 -04:00
Matt Jankowski
9ec81a663e Generated env updates 2024-07-29 11:18:43 -04:00
Matt Jankowski
cd6f72d40a Generated development.rb update 2024-07-29 11:18:43 -04:00
Matt Jankowski
d9edfaf111 New framework defaults 2024-07-29 11:18:43 -04:00
Matt Jankowski
30a793e463 Update safe reblog insert for Rails 7.2 2024-07-29 11:18:43 -04:00
Matt Jankowski
959c4e9224 Moved migration_context method to connection pool 2024-07-29 11:18:43 -04:00
Matt Jankowski
33b3457a9f Use rails version 7.2.0.beta3 2024-07-29 11:18:43 -04:00
5 changed files with 33 additions and 10 deletions

View file

@ -60,7 +60,7 @@ export interface BaseNotificationGroupJSON {
interface NotificationGroupWithStatusJSON extends BaseNotificationGroupJSON {
type: NotificationWithStatusType;
status_id: string;
status: ApiStatusJSON;
}
interface NotificationWithStatusJSON extends BaseNotificationJSON {

View file

@ -49,14 +49,21 @@ export const FilteredNotificationsBanner: React.FC = () => {
<span>
<FormattedMessage
id='filtered_notifications_banner.pending_requests'
defaultMessage='From {count, plural, =0 {no one} one {one person} other {# people}} you may know'
defaultMessage='Notifications from {count, plural, =0 {no one} one {one person} other {# people}} you may know'
values={{ count: policy.summary.pending_requests_count }}
/>
</span>
</div>
<div className='filtered-notifications-banner__badge'>
{toCappedNumber(policy.summary.pending_notifications_count)}
<div className='filtered-notifications-banner__badge__badge'>
{toCappedNumber(policy.summary.pending_notifications_count)}
</div>
<FormattedMessage
id='filtered_notifications_banner.mentions'
defaultMessage='{count, plural, one {mention} other {mentions}}'
values={{ count: policy.summary.pending_notifications_count }}
/>
</div>
</Link>
);

View file

@ -300,7 +300,8 @@
"filter_modal.select_filter.subtitle": "Use an existing category or create a new one",
"filter_modal.select_filter.title": "Filter this post",
"filter_modal.title.status": "Filter a post",
"filtered_notifications_banner.pending_requests": "From {count, plural, =0 {no one} one {one person} other {# people}} you may know",
"filtered_notifications_banner.mentions": "{count, plural, one {mention} other {mentions}}",
"filtered_notifications_banner.pending_requests": "Notifications from {count, plural, =0 {no one} one {one person} other {# people}} you may know",
"filtered_notifications_banner.title": "Filtered notifications",
"firehose.all": "All",
"firehose.local": "This server",

View file

@ -124,9 +124,9 @@ export function createNotificationGroupFromJSON(
case 'mention':
case 'poll':
case 'update': {
const { status_id: statusId, ...groupWithoutStatus } = group;
const { status, ...groupWithoutStatus } = group;
return {
statusId,
statusId: status.id,
sampleAccountIds,
...groupWithoutStatus,
};

View file

@ -10171,10 +10171,25 @@ noscript {
}
&__badge {
background: $ui-button-background-color;
color: $white;
border-radius: 100px;
padding: 2px 8px;
display: flex;
align-items: center;
border-radius: 999px;
background: var(--background-border-color);
color: $darker-text-color;
padding: 4px;
padding-inline-end: 8px;
gap: 6px;
font-weight: 500;
font-size: 11px;
line-height: 16px;
word-break: keep-all;
&__badge {
background: $ui-button-background-color;
color: $white;
border-radius: 100px;
padding: 2px 8px;
}
}
}