From 42064acefaf0df405d07fcd9f38de1ad58a1bd50 Mon Sep 17 00:00:00 2001 From: ZGaetano Date: Sat, 30 May 2026 13:30:42 -0400 Subject: [PATCH] shell: fix nav icon conflicts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - schedule: jobs → clock (was sharing hamburger icon with Jobs) - playout: monitor → signal (was sharing TV icon with Monitors) --- services/web-ui/public/shell.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/web-ui/public/shell.jsx b/services/web-ui/public/shell.jsx index b6aad71..2549803 100644 --- a/services/web-ui/public/shell.jsx +++ b/services/web-ui/public/shell.jsx @@ -20,7 +20,7 @@ const NAV_SECTIONS = [ { id: "upload", label: "Upload", icon: "upload" }, { id: "youtube", label: "YouTube", icon: "download" }, { 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" }, ], },