From 0d567472a922acd4fe9a3e4aead55d0f90709bb8 Mon Sep 17 00:00:00 2001 From: josh Date: Sat, 28 Mar 2026 15:21:25 -0400 Subject: [PATCH] fix: use badge for stack on detail overview, consistent across all views stack was plain highlighted text on the detail page but a coloured badge on the home cards and in the history timeline. Now all three use the same badge component. Co-Authored-By: Claude Sonnet 4.6 --- js/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui.js b/js/ui.js index f481c60..865ec77 100644 --- a/js/ui.js +++ b/js/ui.js @@ -178,7 +178,7 @@ async function renderDetailPage(vmid) { document.getElementById('detail-identity').innerHTML = `
name${esc(inst.name)}
state${esc(inst.state)}
-
stack${esc(inst.stack) || '—'}
+
stack${esc(inst.stack) || '—'}
vmid${inst.vmid}
internal id${inst.id}
`; -- 2.39.5