Skip to content

Commit

Permalink
fix issue with date display
Browse files Browse the repository at this point in the history
  • Loading branch information
aetaric committed Oct 9, 2024
1 parent 553fdfb commit b66daec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webserver/src/components/Table.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default function DataTable() {
.then(data => {
const rows = data?.map((l, i) => ({
id: i + 1,
date: timeConverter(l.Data.Date),
date: timeConverter(l.Data.date),
path: l.Path,
reason: l.Data.reason,
ext: l.Data.fileExt,
Expand Down

0 comments on commit b66daec

Please sign in to comment.