diff --git a/services/web-ui/public/screens-playout.jsx b/services/web-ui/public/screens-playout.jsx index a5535fd..75a2e8a 100644 --- a/services/web-ui/public/screens-playout.jsx +++ b/services/web-ui/public/screens-playout.jsx @@ -36,7 +36,7 @@ async function poFetch(path, opts) { // ── Helpers ─────────────────────────────────────────────────────────────────── -function fmtDuration(secs) { +function playoutFmtDur(secs) { if (!secs || secs < 0) return '—'; const s = Math.floor(secs); const h = Math.floor(s / 3600); @@ -47,7 +47,7 @@ function fmtDuration(secs) { return h > 0 ? `${h}:${mm}:${ssStr}` : `${m}:${ssStr}`; } -function fmtTimecode(secs) { +function playoutFmtTC(secs) { // HH:MM:SS:FF at 29.97 (rounded) const s = Math.floor(secs); const h = Math.floor(s / 3600); @@ -317,7 +317,7 @@ function Playlist({ channel, playlistId, items, activeIndex, onReload }) {