Fix featured hashtags not showing year for date in web UI (#34491)

This commit is contained in:
Eugen Rochko 2025-04-18 15:54:13 +02:00 committed by GitHub
parent 361f528c89
commit 3159f3b2f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -42,6 +42,7 @@ export const FeaturedTag: React.FC<FeaturedTagProps> = ({ tag, account }) => {
date: intl.formatDate(tag.get('last_status_at') ?? '', {
month: 'short',
day: '2-digit',
year: 'numeric',
}),
})
: intl.formatMessage(messages.empty)