Skip to content

Commit

Permalink
fix(webui): Report date format and add "Employer" temporarily for typ
Browse files Browse the repository at this point in the history
  • Loading branch information
berdal84 committed May 1, 2024
1 parent 0564567 commit e059896
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webui/app/report/components/Report.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ export default function Report(props: Props) {
{jobs.flatMap((job) => (
job.events.map((event) => (
<TableRow key={`${job.id}-${event.id}`}>
<TableCell>{moment(event.date).format("YYYY/MM/DD")}</TableCell>
<TableCell>-</TableCell>
<TableCell>{moment(event.date).format("MM/DD/YYYY")}</TableCell>
<TableCell>Employer</TableCell>
<TableCell>{job.company}</TableCell>
<TableCell>{event.contact_person}</TableCell>
<TableCell>{event.contact_type}</TableCell>
Expand Down

0 comments on commit e059896

Please sign in to comment.