Skip to content

Commit 7a375a1

Browse files
authored
Also considering notebook edit groups (microsoft#259171)
also considering notebook edit groups
1 parent 6a1b349 commit 7a375a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ export class ChatListItemRenderer extends Disposable implements ITreeRenderer<Ch
720720
const consideredFiles: Set<string> = new Set();
721721
const fileChanges: IChatChangesSummary[] = [];
722722
for (const part of element.model.entireResponse.value) {
723-
if (part.kind === 'textEditGroup' && !consideredFiles.has(part.uri.toString(true))) {
723+
if ((part.kind === 'textEditGroup' || part.kind === 'notebookEditGroup') && !consideredFiles.has(part.uri.toString(true))) {
724724
fileChanges.push({
725725
kind: 'changesSummary',
726726
reference: part.uri,

0 commit comments

Comments
 (0)