diff --git a/dashboard/src/decisions.md b/dashboard/src/decisions.md index 6553e11..72abba1 100644 --- a/dashboard/src/decisions.md +++ b/dashboard/src/decisions.md @@ -150,15 +150,16 @@ const _kpiBox = html`
withDocHelp(_kpiBox, "/docs/decisions-kpi"); -// ── Header: live indicator (left) + KPI box (right) ──────────────────────── -display(html`
-
- - ${_ok - ? `Live · updated ${_ts?.toLocaleTimeString()}` - : html`Offline — run: make api`} -
- ${_kpiBox} +// ── Fixed sidebar — stays in viewport top-right corner while scrolling ────── +display(html`
${_kpiBox}
`); +``` + +```js +display(html`
+ + ${_ok + ? `Live · updated ${_ts?.toLocaleTimeString()}` + : html`Offline — run: make api`}
`); ``` @@ -352,19 +353,21 @@ if (escalated.length > 0) { ```