fix: show active qBittorrent transfers

This commit is contained in:
Developer
2026-07-14 16:07:04 +00:00
parent 70511d97f9
commit a541a4fd16
11 changed files with 376 additions and 187 deletions
+8 -2
View File
@@ -467,7 +467,10 @@ function AppInner() {
<Route path="/" element={<Dashboard />} />
<Route path="/d/:slug" element={<NamedDashboardPage />} />
<Route path="/settings" element={<Settings />} />
<Route path="/services" element={<Navigate to="/settings?tab=services" replace />} />
<Route
path="/services"
element={<Navigate to="/settings?tab=services" replace />}
/>
<Route
path="/services/:serviceType"
element={<ServiceTypePage />}
@@ -495,7 +498,10 @@ function AppInner() {
<Route path="/" element={<Dashboard />} />
<Route path="/d/:slug" element={<NamedDashboardPage />} />
<Route path="/settings" element={<Settings />} />
<Route path="/services" element={<Navigate to="/settings?tab=services" replace />} />
<Route
path="/services"
element={<Navigate to="/settings?tab=services" replace />}
/>
<Route
path="/services/:serviceType"
element={<ServiceTypePage />}