From 6ee7d55a03b68bf8a42b8ade8fa57fc0485f2a0f Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Thu, 19 Feb 2026 18:14:27 +0100 Subject: [PATCH] sessions - hide group counts (#296321) --- .../contrib/chat/browser/agentSessions/agentSessionsViewer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer.ts b/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer.ts index 12ac84ccbe7..3743ead31ab 100644 --- a/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer.ts +++ b/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer.ts @@ -694,7 +694,7 @@ export class AgentSessionsDataSource implements IAsyncDataSource 0) { result.push({ section: AgentSessionSection.More, - label: localize('agentSessions.moreSectionWithCount', "More ({0})", othersSessions.length), + label: AgentSessionSectionLabels[AgentSessionSection.More], sessions: othersSessions }); } @@ -764,7 +764,7 @@ export function groupAgentSessionsByDate(sessions: IAgentSession[]): Map