Skip to content

Commit

Permalink
fix: use unambiguous short date [DHIS2-14183]
Browse files Browse the repository at this point in the history
  • Loading branch information
tomzemp committed Nov 23, 2022
1 parent c22c750 commit 00eb198
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/AppDetails/Versions.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ const VersionsTable = ({ installedVersion, versions, onVersionInstall }) => (
<TableCell>
{channelToDisplayName[version.channel]}
</TableCell>
<TableCell>{moment(version.created).format('L')}</TableCell>
<TableCell>
{moment(version.created).format('ll')}
</TableCell>
<TableCell>
<Button
small
Expand Down

0 comments on commit 00eb198

Please sign in to comment.