diff --git a/client/src/components/parts-order-modal/parts-order-modal.component.jsx b/client/src/components/parts-order-modal/parts-order-modal.component.jsx index c0944918f..a318f34f5 100644 --- a/client/src/components/parts-order-modal/parts-order-modal.component.jsx +++ b/client/src/components/parts-order-modal/parts-order-modal.component.jsx @@ -93,12 +93,21 @@ export default function PartsOrderModalComponent({ > + { + // + // + // + } - + )} - - - - - + - + ) : null} diff --git a/client/src/components/time-tickets-summary-employees/time-tickets-summary-employees.component.jsx b/client/src/components/time-tickets-summary-employees/time-tickets-summary-employees.component.jsx index 46e203eb5..c24bf9825 100644 --- a/client/src/components/time-tickets-summary-employees/time-tickets-summary-employees.component.jsx +++ b/client/src/components/time-tickets-summary-employees/time-tickets-summary-employees.component.jsx @@ -178,7 +178,7 @@ const JobRelatedTicketsTable = ({ render: (text, record) => record.actHrs === 0 || !record.actHrs ? "∞" - : (record.prodHrs / record.actHrs) * 100, + : ((record.prodHrs / record.actHrs) * 100).toFixed(2), }, { title: t("timetickets.fields.clockhours"), @@ -217,8 +217,9 @@ const JobRelatedTicketsTable = ({