diff --git a/webui/static/pages-extra.js b/webui/static/pages-extra.js index c132875f..8bea349e 100644 --- a/webui/static/pages-extra.js +++ b/webui/static/pages-extra.js @@ -2881,10 +2881,10 @@ function _adlRenderBatchHistory() { const dotTip = dotSource ? `Source: ${dotSource}` : 'Unknown source'; const histDot = ``; - // Optional thumbnail + // Thumbnail with placeholder fallback const thumb = h.thumb_url - ? `` - : ''; + ? `` + : ``; // Server push status indicator let pushBadge = ''; diff --git a/webui/static/style.css b/webui/static/style.css index b8f68419..5c33bf53 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -57200,6 +57200,20 @@ body.reduce-effects *::after { flex-shrink: 0; } +.adl-batch-history-thumb-placeholder { + display: inline-flex; + align-items: center; + justify-content: center; + background: rgba(255, 255, 255, 0.06); + border: 1px solid rgba(255, 255, 255, 0.06); +} + +.adl-batch-history-thumb-placeholder::after { + content: '♫'; + font-size: 12px; + color: rgba(255, 255, 255, 0.2); +} + .adl-batch-history-content { flex: 1; min-width: 0;