Skip to content

Commit

Permalink
Display lastname, firstname format for CreatedBy column
Browse files Browse the repository at this point in the history
  • Loading branch information
entrotech committed Feb 13, 2025
1 parent 905fcaf commit 75c290d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Projects/ProjectTableRow.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ const ProjectTableRow = ({
<td className={classes.td}>{project.address}</td>
<td className={classes.td}>{fallbackToBlank(formInputs.VERSION_NO)}</td>
<td className={classes.td}>
{`${project.firstName} ${project.lastName}`}
{`${project.lastName}, ${project.firstName}`}
</td>
<td className={classes.tdRightAlign}>
{formatDate(project.dateCreated)}
Expand Down

0 comments on commit 75c290d

Please sign in to comment.