From 94fed89742bc4d37859f6cd10fbbd4eb4e85ffcc Mon Sep 17 00:00:00 2001 From: Matt Bierner <12821956+mjbvz@users.noreply.github.com> Date: Thu, 9 Apr 2026 15:32:54 -0700 Subject: [PATCH] Add new chat session items on the ext host side --- src/vs/workbench/api/common/extHostChatSessions.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vs/workbench/api/common/extHostChatSessions.ts b/src/vs/workbench/api/common/extHostChatSessions.ts index 039d0c6d8f5..94f2a91c1b5 100644 --- a/src/vs/workbench/api/common/extHostChatSessions.ts +++ b/src/vs/workbench/api/common/extHostChatSessions.ts @@ -1058,6 +1058,8 @@ export class ExtHostChatSessions extends Disposable implements ExtHostChatSessio return undefined; } + controllerData.controller.items.add(item); + return typeConvert.ChatSessionItem.from(item); }