ui(diagnostic): Flotten-Status 'frei' -> 'frei – idle – keine Auslastung'

Klarer lesbar in der Compute-Flotte: der idle-Zustand eines Workers heisst
jetzt ausgeschrieben. beschaeftigt/offline unveraendert.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-09-19 11:48:37 +02:00
co-authored by Claude Opus 4.8
parent af1a3bf386
commit 512e24bb6f
+1 -1
View File
@@ -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 || '');