Add cost center to employee time tickets summary.

This commit is contained in:
Patrick Fic
2023-01-26 11:07:08 -08:00
parent 423157dfcc
commit a54862a309
2 changed files with 6 additions and 3 deletions

View File

@@ -85,7 +85,7 @@ export function TimeTicketList({
text: (() => {
const emp = bodyshop.employees.find((e) => e.id === s);
return `${emp.first_name} ${emp.last_name}`;
return `${emp?.first_name} ${emp?.last_name}`;
})(), //
value: [s],
};