From cadb6d099136add819c973ca62b837f4a3a88c47 Mon Sep 17 00:00:00 2001 From: Developer Date: Thu, 9 Jul 2026 20:11:12 +0000 Subject: [PATCH] fix(nav): add qBittorrent to per-service-type navbar entries qBittorrent was missing from SERVICE_TYPE_NAV_ENTRIES, so configured qBit instances never appeared in the left nav (unlike jellyfin/prometheus/etc.). Add entry with Magnet icon. navEntries.test.ts filters by configured types (no fixed-count assertion) so it stays green. --- frontend/src/integrations/navEntries.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/frontend/src/integrations/navEntries.ts b/frontend/src/integrations/navEntries.ts index f6f808d..c104544 100644 --- a/frontend/src/integrations/navEntries.ts +++ b/frontend/src/integrations/navEntries.ts @@ -10,6 +10,7 @@ import { Activity, DatabaseBackup, GanttChartSquare, + Magnet, Monitor, Server, Users, @@ -66,6 +67,12 @@ export const SERVICE_TYPE_NAV_ENTRIES: NavEntry[] = [ icon: Users, path: "/services/authentik", }, + { + serviceType: "qbittorrent", + label: "qBittorrent", + icon: Magnet, + path: "/services/qbittorrent", + }, ]; /**