Skip to content

Commit

Permalink
Properly parse changes timestamp
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Lamparelli <[email protected]>
  • Loading branch information
lampajr committed Oct 22, 2024
1 parent 0bca64e commit c77ffa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion horreum-web/src/domain/alerting/ChangeTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export const ChangeTable = ({ varId, fingerprint, testOwner, selectedChangeId }:
id: "timestamp",
accessor: "timestamp",
sortType: "datetime",
Cell: (arg: any) => <div>formatDateTime(arg.cell.value)</div>,
Cell: (arg: any) => <div>{formatDateTime(arg.cell.value)}</div>,
},
{
Header: "Dataset",
Expand Down

0 comments on commit c77ffa0

Please sign in to comment.