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 19fabc2 commit 4621927Copy full SHA for 4621927
src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingService.ts
@@ -136,6 +136,7 @@ export class ChatEditingService extends Disposable implements IChatEditingServic
136
return this._currentSessionObs.read(r)?.canRedo.read(r) || false;
137
}));
138
this._register(this._chatService.onDidDisposeSession((e) => {
139
+ this._applyingChatEditsFailedContextKey.set(false);
140
if (e.reason === 'cleared' && this._currentSessionObs.get()?.chatSessionId === e.sessionId) {
141
void this._currentSessionObs.get()?.stop();
142
}
0 commit comments