Changes made to glances

This commit is contained in:
2026-02-12 22:52:09 +01:00
parent fb88376155
commit bf0bf6b185

View File

@@ -169,6 +169,7 @@
if (!res.ok) throw new Error(`HTTP ${res.status}`);
const data = await res.json();
console.log(`[StatusMonitor] ${mon.label} raw:`, JSON.stringify(data).slice(0, 500));
const result = this.parsers[mon.parseType](data);
dot.className = 'status-dot ok';
value.textContent = result;