Skip to content

Commit de44f0c

Browse files
authored
fix: disable followups in editing view (microsoft#230457)
1 parent c33745f commit de44f0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/chat/browser/chatViewPane.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export class ChatViewPane extends ViewPane {
156156
ChatWidget,
157157
this.chatOptions.location,
158158
{ viewId: this.id },
159-
{ supportsFileReferences: true, supportsAdditionalParticipants: this.chatOptions.location === ChatAgentLocation.Panel, rendererOptions: { collapseCodeBlocks: this.chatOptions.location === ChatAgentLocation.EditingSession } },
159+
{ renderFollowups: this.chatOptions.location === ChatAgentLocation.Panel, supportsFileReferences: true, supportsAdditionalParticipants: this.chatOptions.location === ChatAgentLocation.Panel, rendererOptions: { collapseCodeBlocks: this.chatOptions.location === ChatAgentLocation.EditingSession } },
160160
{
161161
listForeground: SIDE_BAR_FOREGROUND,
162162
listBackground: locationBasedColors.background,

0 commit comments

Comments
 (0)