Skip to content

Commit 7b79d38

Browse files
committed
fix(webui): Use same timing presentation logic in screens
1 parent 0ebcdfa commit 7b79d38

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

packages/webui/src/client/ui/ClockView/TTimerDisplay.tsx

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,7 @@ export function TTimerDisplay({ timer }: Readonly<TTimerDisplayProps>): JSX.Elem
1919

2020
const diff = calculateTTimerDiff(timer, now)
2121
const overUnder = calculateTTimerOverUnder(timer, now)
22-
const timeStr = RundownUtils.formatDiffToTimecode(
23-
Math.abs(diff),
24-
false,
25-
true,
26-
true,
27-
false,
28-
true,
29-
undefined,
30-
true,
31-
true
32-
)
22+
const timeStr = RundownUtils.formatDiffToTimecode(Math.abs(diff), false, true, true, false, true)
3323
const timerSign = diff >= 0 ? '' : '-'
3424

3525
return (

0 commit comments

Comments
 (0)