File tree Expand file tree Collapse file tree
packages/webui/src/client/ui Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import ClassNames from 'classnames'
2- import { DBRundownPlaylist } from '@sofie-automation/corelib/dist/dataModel/RundownPlaylist'
32import { getDefaultTTimer } from '../../lib/tTimerUtils.js'
43import { TTimerDisplay } from './TTimerDisplay.js'
4+ import { DBRundownPlaylist } from '@sofie-automation/corelib/src/dataModel/RundownPlaylist/RundownPlaylist.js'
55
66interface RundownStatusBarProps {
77 playlist ?: DBRundownPlaylist
Original file line number Diff line number Diff line change 11import React from 'react'
22import classNames from 'classnames'
3- import { DBRundownPlaylist } from '@sofie-automation/corelib/dist/dataModel/RundownPlaylist'
43import { RundownUtils } from '../../lib/rundown.js'
54import { useTiming } from '../RundownView/RundownTiming/withTiming.js'
65import { getPlaylistTimingDiff } from '../../lib/rundownTiming.js'
6+ import { DBRundownPlaylist } from '@sofie-automation/corelib/src/dataModel/RundownPlaylist/RundownPlaylist.js'
77
88type OverUnderTimerBaseProps = {
99 /** Optional wrapper around the badge, useful for screens that style via container font-size (eg. director). */
@@ -28,7 +28,9 @@ type OverUnderTimerInnerProps = OverUnderTimerBaseProps & { valueMs: number | un
2828 * Over/under "pill" timer.
2929 * Can either take a direct `valueMs` or a `rundownPlaylist` (requires RundownTiming context).
3030 */
31- export function OverUnderTimer ( props : Readonly < OverUnderTimerBaseProps & OverUnderTimerValueProps > ) : JSX . Element | null {
31+ export function OverUnderTimer (
32+ props : Readonly < OverUnderTimerBaseProps & OverUnderTimerValueProps >
33+ ) : JSX . Element | null {
3234 if ( 'valueMs' in props ) {
3335 return < OverUnderTimerInner { ...props } valueMs = { props . valueMs } />
3436 } else {
You can’t perform that action at this time.
0 commit comments