Skip to content

Commit

Permalink
Fix date showing incorrect format
Browse files Browse the repository at this point in the history
  • Loading branch information
kattylucy committed Jan 14, 2025
1 parent c71198d commit d2eede0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion centrifuge-app/src/components/Report/Orders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const Orders = ({ pool }: { pool: Pool }) => {
align: 'left',
header: 'Date & Time',
sortable: true,
formatter: (v: any) => formatDateAndTime(v),
formatter: (v: any) => (v ? formatDateAndTime(v) : '-'),
width: '200px',
},
{
Expand Down

0 comments on commit d2eede0

Please sign in to comment.