From 7ad454f9a29cf079d12648f685c79ed8096d14fb Mon Sep 17 00:00:00 2001 From: SSU-WEI HUANG Date: Sat, 1 Aug 2026 01:17:23 +0800 Subject: [PATCH] fix(web): prioritize session names in narrow sidebar (#1029) --- web/src/components/SessionRowSummary.tsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/web/src/components/SessionRowSummary.tsx b/web/src/components/SessionRowSummary.tsx index 827786e9..df94b8bd 100644 --- a/web/src/components/SessionRowSummary.tsx +++ b/web/src/components/SessionRowSummary.tsx @@ -150,10 +150,13 @@ export function SessionRowSummary(props: { return (
-
+
-
+
{sessionName}
{s.active && s.thinking ? ( @@ -194,20 +197,20 @@ export function SessionRowSummary(props: { ) : null}
-
+
{todoProgress ? ( - + {todoProgress.completed}/{todoProgress.total} ) : null} {!attention && s.pendingRequestsCount > 0 ? ( - + {t('session.item.pending')} {s.pendingRequestsCount} ) : null} {timeLabel ? ( - {timeLabel} + {timeLabel} ) : null}