Merge branch 'master' into render-currency-update

This commit is contained in:
Oliver 2026-06-19 20:27:05 +10:00 committed by GitHub
commit 3a294aa87a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 3 deletions

View File

@ -130,9 +130,13 @@ export default function NewsWidget() {
<NewsItem key={item.pk} item={item} onMarkRead={markRead} />
))
) : (
<Alert color='green' title={t`No News`}>
<Text>{t`There are no unread news items`}</Text>
</Alert>
<Table.Tr>
<Table.Td colSpan={3}>
<Alert color='green' title={t`No News`}>
<Text>{t`There are no unread news items`}</Text>
</Alert>
</Table.Td>
</Table.Tr>
)}
</Table.Tbody>
</Table>