Skip to content

Commit 0c2a3ee

Browse files
committed
wip: total diff should not only show 24 hours
1 parent 42d7af4 commit 0c2a3ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/webui/src/client/lib/Components/CounterComponents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const OverUnderClockComponent = (props: OverUnderProps): JSX.Element => {
99
return (
1010
<div className="counter-component__over-under">
1111
<span className={props.value < 0 ? 'under' : 'over'}>
12-
{RundownUtils.formatTimeToTimecode({ frameRate: 25 }, props.value, true, false, true)}
12+
{RundownUtils.formatDiffToTimecode(props.value, true, false, true, true, true, undefined, true, true)}
1313
</span>
1414
</div>
1515
)

0 commit comments

Comments
 (0)