Skip to content

Commit

Permalink
Merge pull request #11 from Excali-Studio/exd-110
Browse files Browse the repository at this point in the history
EXD 110 - Table updatedAt row fix
  • Loading branch information
MicDeb-Silk authored Aug 30, 2024
2 parents 0003098 + 8782d18 commit 751b043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ContentTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default function ContentTable({
{new Date(value.dateCreated).toLocaleString()}
</TableCell>
<TableCell className="hidden md:table-cell">
{new Date(value.dateCreated).toLocaleString()}
{new Date(value.dateUpdated).toLocaleString()}
</TableCell>
<TableCell className="hidden lg:table-cell">
<div className="flex gap-1">
Expand Down

0 comments on commit 751b043

Please sign in to comment.