diff --git a/artifacts/cra-app/src/pages/timesheet-detail.tsx b/artifacts/cra-app/src/pages/timesheet-detail.tsx index bc46edb..a81a22c 100644 --- a/artifacts/cra-app/src/pages/timesheet-detail.tsx +++ b/artifacts/cra-app/src/pages/timesheet-detail.tsx @@ -454,7 +454,7 @@ export default function TimesheetDetailPage() {
Total: - {showDays ? `${Math.ceil(grandTotal / 8)}j` : `${grandTotal}h`} + {showDays ? `${Math.ceil(grandTotal / 8)} j` : `${grandTotal} h`}
@@ -599,7 +599,7 @@ export default function TimesheetDetailPage() { {rowTotals[line.id] > 0 ? ( - {showDays ? `${Math.ceil(rowTotals[line.id] / 8)}j` : `${rowTotals[line.id]}h`} + {showDays ? `${Math.ceil(rowTotals[line.id] / 8)} j` : `${rowTotals[line.id]} h`} ) : "-"} @@ -622,12 +622,12 @@ export default function TimesheetDetailPage() { total >= 8 ? "text-green-700 font-bold bg-green-50" : "" )} > - {total > 0 ? (showDays ? `${Math.ceil(total / 8)}j` : total) : ""} + {total > 0 ? (showDays ? `${Math.ceil(total / 8)} j` : `${total} h`) : ""} ); })} - {showDays ? `${Math.ceil(grandTotal / 8)}j` : `${grandTotal}h`} + {showDays ? `${Math.ceil(grandTotal / 8)} j` : `${grandTotal} h`} diff --git a/attached_assets/image_1777020041553.png b/attached_assets/image_1777020041553.png new file mode 100644 index 0000000..a97a38b Binary files /dev/null and b/attached_assets/image_1777020041553.png differ