From e7fe3ea375c0317c27d8b0338d358b160356d09a Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Tue, 1 Apr 2025 14:58:17 +0200 Subject: [PATCH] chat - adopt `copilot-unavailable` (#245238) --- src/vs/workbench/contrib/chat/browser/chatStatus.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/chat/browser/chatStatus.ts b/src/vs/workbench/contrib/chat/browser/chatStatus.ts index 81c8fa4f153..1019c9ba4a3 100644 --- a/src/vs/workbench/contrib/chat/browser/chatStatus.ts +++ b/src/vs/workbench/contrib/chat/browser/chatStatus.ts @@ -203,7 +203,7 @@ export class ChatStatusBarEntry extends Disposable implements IWorkbenchContribu // Completions Disabled else if (this.editorService.activeTextEditorLanguageId && !isCompletionsEnabled(this.configurationService, this.editorService.activeTextEditorLanguageId)) { - text = `$(copilot-not-connected)`; + text = `$(copilot-unavailable)`; ariaLabel = localize('completionsDisabledStatus', "Code Completions Disabled"); } }