From c19087383b80c21375becf9c9fb73ec1791877a1 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Fri, 16 May 2025 16:13:50 -0700 Subject: [PATCH] Fix summarization progress message breaking list rendering Fix #249148 --- src/vs/workbench/api/browser/mainThreadChatAgents2.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/api/browser/mainThreadChatAgents2.ts b/src/vs/workbench/api/browser/mainThreadChatAgents2.ts index b6f4eb800916f..a43107d7502fe 100644 --- a/src/vs/workbench/api/browser/mainThreadChatAgents2.ts +++ b/src/vs/workbench/api/browser/mainThreadChatAgents2.ts @@ -259,7 +259,7 @@ export class MainThreadChatAgents2 extends Disposable implements MainThreadChatA const task = new MainThreadChatTask(revivedProgress.content); this._activeTasks.set(responsePartId, task); chatProgressParts.push(task); - + return; } else if (responsePartHandle !== undefined) { const responsePartId = `${requestId}_${responsePartHandle}`; const task = this._activeTasks.get(responsePartId);