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.
This commit is contained in:
@@ -10,6 +10,7 @@ import {
|
|||||||
Activity,
|
Activity,
|
||||||
DatabaseBackup,
|
DatabaseBackup,
|
||||||
GanttChartSquare,
|
GanttChartSquare,
|
||||||
|
Magnet,
|
||||||
Monitor,
|
Monitor,
|
||||||
Server,
|
Server,
|
||||||
Users,
|
Users,
|
||||||
@@ -66,6 +67,12 @@ export const SERVICE_TYPE_NAV_ENTRIES: NavEntry[] = [
|
|||||||
icon: Users,
|
icon: Users,
|
||||||
path: "/services/authentik",
|
path: "/services/authentik",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
serviceType: "qbittorrent",
|
||||||
|
label: "qBittorrent",
|
||||||
|
icon: Magnet,
|
||||||
|
path: "/services/qbittorrent",
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user