Skip to content

Commit

Permalink
Fixed date format in the UI footer component
Browse files Browse the repository at this point in the history
  • Loading branch information
miksrv committed Sep 9, 2024
1 parent f35e825 commit 46f0acb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/components/footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Footer: React.FC = () => (
</a>{' '}
{formatDate(new Date(), 'YYYY')}, Version{' '}
<span>{packageInfo.version}</span>{' '}
<span>({formatDate(update)})</span>
<span>({formatDate(update, 'DD.MM.YYYY, HH:mm')})</span>
</div>
</footer>
)
Expand Down

0 comments on commit 46f0acb

Please sign in to comment.