From 1db0e81efb72fee24a53faf0d0827d12dd8e70ec Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Sun, 31 May 2026 13:54:16 -0400 Subject: [PATCH] fix(web-ui): restore nav icon fixes on feat/playout-mcr youtube: import, schedule: clock, playout: signal. Keeps getting wiped by other agents writing full file replacements. --- services/web-ui/public/shell.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/web-ui/public/shell.jsx b/services/web-ui/public/shell.jsx index b6aad71..7084b9f 100644 --- a/services/web-ui/public/shell.jsx +++ b/services/web-ui/public/shell.jsx @@ -18,9 +18,9 @@ const NAV_SECTIONS = [ label: "Ingest", items: [ { id: "upload", label: "Upload", icon: "upload" }, - { id: "youtube", label: "YouTube", icon: "download" }, + { id: "youtube", label: "YouTube", icon: "import" }, { id: "recorders", label: "Recorders", icon: "record" }, - { id: "schedule", label: "Schedule", icon: "jobs" }, + { id: "schedule", label: "Schedule", icon: "clock" }, { id: "monitors", label: "Monitors", icon: "monitor" }, ], }, @@ -28,7 +28,7 @@ const NAV_SECTIONS = [ label: "Operations", items: [ { id: "capture", label: "Capture", icon: "capture" }, - { id: "playout", label: "Playout", icon: "monitor" }, + { id: "playout", label: "Playout", icon: "signal" }, { id: "jobs", label: "Jobs", icon: "jobs" }, ], },