From 512e24bb6f707a6a5d759892cd976cb5c24759f2 Mon Sep 17 00:00:00 2001 From: duffyduck Date: Sat, 19 Sep 2026 11:48:37 +0200 Subject: [PATCH] =?UTF-8?q?ui(diagnostic):=20Flotten-Status=20'frei'=20->?= =?UTF-8?q?=20'frei=20=E2=80=93=20idle=20=E2=80=93=20keine=20Auslastung'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Klarer lesbar in der Compute-Flotte: der idle-Zustand eines Workers heisst jetzt ausgeschrieben. beschaeftigt/offline unveraendert. Co-Authored-By: Claude Opus 4.8 --- diagnostic/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/diagnostic/index.html b/diagnostic/index.html index cc1e46e..78b0126 100644 --- a/diagnostic/index.html +++ b/diagnostic/index.html @@ -4363,7 +4363,7 @@ const rows = byNode[node].map(w => { const meta = WORKER_SVC_META[w.service] || { icon: '⚙️', label: w.service }; const dot = !w.online ? '#666' : (w.busy ? '#FFB020' : '#3FFF3F'); - const stat = !w.online ? 'offline' : (w.busy ? 'beschaeftigt' : 'frei'); + const stat = !w.online ? 'offline' : (w.busy ? 'beschaeftigt' : 'frei – idle – keine Auslastung'); // llm-Boxen koennen mehrere Modelle fahren (llama-swap) → Liste zeigen. const modelText = (w.service === 'llm' && Array.isArray(w.models) && w.models.length) ? w.models.join(', ') : (w.model || '');