Skip to content

Commit

Permalink
project.createdOn use date function
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarkowsky committed Oct 11, 2024
1 parent dfadb9d commit 7abbc55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion react-app/src/components/projects/ProjectsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ const ProjectsTable = () => {
: lookup.getLookupValueById('Agencies', project.AgencyId)?.Name,
Agency: lookup.getLookupValueById('Agencies', project.AgencyId)?.Name,
'Created By': `${project.CreatedBy?.FirstName} ${project.CreatedBy?.LastName}`,
'Created On': new Date(project.CreatedOn),
'Created On': makeDateOrUndefined(project.CreatedOn),
'Exemption Requested': project.Tasks?.find(
(task) => task.TaskId === ProjectTask.EXEMPTION_REQUESTED,
)?.IsCompleted,
Expand Down

0 comments on commit 7abbc55

Please sign in to comment.