From 11b74d7c140d81412a3a5d40e1df0fec900f7bfe Mon Sep 17 00:00:00 2001
From: JohnBaumb <80135794+JohnBaumb@users.noreply.github.com>
Date: Thu, 23 Apr 2026 00:46:54 -0700
Subject: [PATCH] Widen batch panel to 400px, shorten stat labels
---
webui/static/pages-extra.js | 10 +++++-----
webui/static/style.css | 2 +-
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/webui/static/pages-extra.js b/webui/static/pages-extra.js
index 73a212b1..9e508afb 100644
--- a/webui/static/pages-extra.js
+++ b/webui/static/pages-extra.js
@@ -2832,16 +2832,16 @@ function _adlRenderBatchHistory() {
const failed = h.tracks_failed || 0;
const total = h.total_tracks || 0;
- // Build stats line: "X in library · X downloaded · X failed (of N)"
+ // Build stats line: "X owned · X new · X failed · X missing"
const statsParts = [];
if (found > 0 || downloaded > 0) {
const owned = found - downloaded; // already in library before this sync
- if (owned > 0) statsParts.push(`${owned} in library`);
- if (downloaded > 0) statsParts.push(`${downloaded} downloaded`);
+ if (owned > 0) statsParts.push(`${owned} owned`);
+ if (downloaded > 0) statsParts.push(`${downloaded} new`);
}
- if (failed > 0) statsParts.push(`${failed} failed`);
+ if (failed > 0) statsParts.push(`${failed} failed`);
const notFound = total - found - failed;
- if (notFound > 0) statsParts.push(`${notFound} not found`);
+ if (notFound > 0) statsParts.push(`${notFound} missing`);
if (statsParts.length === 0) statsParts.push(`${total} tracks`);
let dateText = '';
diff --git a/webui/static/style.css b/webui/static/style.css
index 4d7faf14..f8ae0196 100644
--- a/webui/static/style.css
+++ b/webui/static/style.css
@@ -56736,7 +56736,7 @@ body.reduce-effects *::after {
/* ---- Batch Context Panel ---- */
.adl-batch-panel {
- width: 340px;
+ width: 400px;
flex-shrink: 0;
border-left: 1px solid rgba(255, 255, 255, 0.06);
padding: 0 12px 0 24px;