Show hours to 2 decimal places (0.75h instead of 0.8h)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-02 15:43:40 +00:00
parent 74d8951fe2
commit e7975db4a3

View file

@ -59,7 +59,7 @@ function fmtDate(date: string) {
}) })
} }
function fmtH(n: number) { return n.toFixed(1) + 'h' } function fmtH(n: number) { return n.toFixed(2) + 'h' }
// ── Pickup calculation ──────────────────────────────────────────────────────── // ── Pickup calculation ────────────────────────────────────────────────────────