Skip to content

Commit 326514b

Browse files
authored
Change chat view container name to "Chat", mainly so that the word Chat ends up in the autogenerated "focus" command name (microsoft#183162)
1 parent 2f4fdec commit 326514b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/chat/browser/chatContributionServiceImpl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export class ChatContributionService implements IChatContributionService {
116116
const viewContainerId = CHAT_SIDEBAR_PANEL_ID + '.' + providerDescriptor.id;
117117
const viewContainer: ViewContainer = Registry.as<IViewContainersRegistry>(ViewExtensions.ViewContainersRegistry).registerViewContainer({
118118
id: viewContainerId,
119-
title: providerDescriptor.label,
119+
title: localize('chat.viewContainer.label', "Chat"),
120120
icon: providerDescriptor.icon ? resources.joinPath(extension.extensionLocation, providerDescriptor.icon) : Codicon.commentDiscussion,
121121
ctorDescriptor: new SyncDescriptor(ViewPaneContainer, [viewContainerId, { mergeViewWithContainerWhenSingleView: true }]),
122122
storageId: viewContainerId,

0 commit comments

Comments
 (0)