We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a1b349 commit 7a375a1Copy full SHA for 7a375a1
src/vs/workbench/contrib/chat/browser/chatListRenderer.ts
@@ -720,7 +720,7 @@ export class ChatListItemRenderer extends Disposable implements ITreeRenderer<Ch
720
const consideredFiles: Set<string> = new Set();
721
const fileChanges: IChatChangesSummary[] = [];
722
for (const part of element.model.entireResponse.value) {
723
- if (part.kind === 'textEditGroup' && !consideredFiles.has(part.uri.toString(true))) {
+ if ((part.kind === 'textEditGroup' || part.kind === 'notebookEditGroup') && !consideredFiles.has(part.uri.toString(true))) {
724
fileChanges.push({
725
kind: 'changesSummary',
726
reference: part.uri,
0 commit comments