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 1b1d5d6 commit c33745fCopy full SHA for c33745f
src/vs/workbench/contrib/chat/browser/chatInputPart.ts
@@ -894,7 +894,7 @@ export class ChatInputPart extends Disposable implements IHistoryNavigationWidge
894
return;
895
}
896
897
- if (!this._chatEditsProgress && chatEditingSession.state.get() === ChatEditingSessionState.StreamingEdits) {
+ if (!this._chatEditsProgress && (chatEditingSession.state.get() === ChatEditingSessionState.StreamingEdits || chatWidget?.viewModel?.requestInProgress)) {
898
this._chatEditsProgress = new ProgressBar(innerContainer);
899
this._chatEditsProgress.infinite().show(500);
900
0 commit comments