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:
parent
74d8951fe2
commit
e7975db4a3
1 changed files with 1 additions and 1 deletions
|
|
@ -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 ────────────────────────────────────────────────────────
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue