Show finished queue items as done instead of uploading.

Map qBittorrent-style uploading state to a done badge in the Web UI; keep backend state for *arr compatibility.
This commit is contained in:
2026-08-07 12:06:36 +02:00
parent daefd503f0
commit 4a756c4be3
2 changed files with 30 additions and 9 deletions

View File

@@ -356,14 +356,20 @@ body {
color: var(--fg);
}
.badge.downloading,
.badge.uploading {
.badge.downloading {
background: var(--fg);
color: var(--bg);
border-color: var(--fg);
}
.badge.queuedDL {
/* finished (backend may still say "uploading") */
.badge.done {
background: var(--fg);
color: var(--bg);
border-color: var(--fg);
}
.badge.queued {
border-style: dashed;
color: var(--muted);
border-color: var(--muted);