Skip to content

Commit

Permalink
Merge pull request #304 from CBIIT/CRDCDH-950
Browse files Browse the repository at this point in the history
CRDCDH-950 Created Date using wrong date property
  • Loading branch information
Alejandro-Vega authored Mar 13, 2024
2 parents 71fab18 + 8b28248 commit 76277d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/dataSubmissions/DataSubmissionsListView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ const columns: Column[] = [
},
{
label: "Created Date",
value: (a) => (a.createdAt ? FormatDate(a.updatedAt, "M/D/YYYY h:mm A") : ""),
value: (a) => (a.createdAt ? FormatDate(a.createdAt, "M/D/YYYY h:mm A") : ""),
field: "createdAt",
},
{
Expand Down

0 comments on commit 76277d8

Please sign in to comment.