Minor fixed + refactored job details screens based on review.

This commit is contained in:
Patrick Fic
2020-08-18 16:43:04 -07:00
parent 9b9feffdfa
commit 534e0a0398
79 changed files with 4119 additions and 909 deletions

View File

@@ -78,8 +78,6 @@ export function TimeTicketsSummaryEmployees({
displayTemplateInWindow(html);
};
console.log("jobTickets", jobTickets);
return (
<div>
<List
@@ -96,8 +94,6 @@ export function TimeTicketsSummaryEmployees({
.map((i) => i.cost_center)
.filter(onlyUnique);
console.log("employeeCostCenters", employeeCostCenters);
return employeeCostCenters.map((costCenter) => {
const actHrs = item.tickets
.filter((ticket) => ticket.cost_center === costCenter)