mirror of
https://github.com/glitch-soc/mastodon.git
synced 2026-03-29 03:00:33 +02:00
Profile redesign: Re-adds title for profile counts and join date (#38445)
This commit is contained in:
@@ -85,7 +85,7 @@ const RedesignNumberFields: FC<{ accountId: string }> = ({ accountId }) => {
|
||||
>
|
||||
<li>
|
||||
<FormattedMessage id='account.posts' defaultMessage='Posts' />
|
||||
<strong>
|
||||
<strong title={intl.formatNumber(account.statuses_count)}>
|
||||
<ShortNumber value={account.statuses_count} />
|
||||
</strong>
|
||||
</li>
|
||||
@@ -114,7 +114,7 @@ const RedesignNumberFields: FC<{ accountId: string }> = ({ accountId }) => {
|
||||
|
||||
<li>
|
||||
<FormattedMessage id='account.joined_short' defaultMessage='Joined' />
|
||||
<strong>
|
||||
<strong title={intl.formatDate(account.created_at)}>
|
||||
{createdThisYear ? (
|
||||
<FormattedDateWrapper
|
||||
value={account.created_at}
|
||||
|
||||
Reference in New Issue
Block a user