From e53a72c2e4d37eefcf4021683f12b2a0fd7f149e Mon Sep 17 00:00:00 2001 From: Edwin Date: Tue, 14 Jul 2026 06:51:39 -0700 Subject: [PATCH] feat(webui): show needs attention dot next to session name --- crates/daemon/assets/index.html | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/crates/daemon/assets/index.html b/crates/daemon/assets/index.html index f781482c..7df9bc64 100644 --- a/crates/daemon/assets/index.html +++ b/crates/daemon/assets/index.html @@ -350,6 +350,13 @@ .session-list .item .pin-indicator.is-empty { color: transparent; } + .session-list .item .attention-dot { + color: var(--accent-alt); + font-size: 11px; + line-height: 1; + text-align: center; + flex-shrink: 0; + } .session-list .item .sub { color: var(--fg-faint); font-size: 11px; @@ -4014,7 +4021,9 @@ (s.archived ? " is-archived" : ""), inner: disclosure + pin + sessionStatusHtml(s) + - `
${escape(sessionDisplayTitle(s))}
${harness}
`, + `
${ + s.needs_attention && !s.archived ? `` : "" + }
${escape(sessionDisplayTitle(s))}
${harness}
`, }; }