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 dfb96d1 commit 5b066ecCopy full SHA for 5b066ec
src/vs/workbench/contrib/chat/browser/chatViewPane.ts
@@ -115,7 +115,7 @@ export class ChatViewPane extends ViewPane {
115
}
116
117
override shouldShowWelcome(): boolean {
118
- if (!this.chatAgentService.getDefaultAgent(ChatAgentLocation.Panel)) {
+ if (!this.chatAgentService.getContributedDefaultAgent(ChatAgentLocation.Panel)) {
119
return true;
120
121
src/vs/workbench/contrib/chat/common/chatAgents.ts
@@ -262,6 +262,7 @@ export class ChatAgentService implements IChatAgentService {
262
};
263
const entry = { data };
264
this._agents.set(id, entry);
265
+ this._onDidChangeAgents.fire(undefined);
266
return toDisposable(() => {
267
this._agents.delete(id);
268
if (data.isDefault) {
0 commit comments