From e17bf8af3639cb4cb05b050c587659724d21c8ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Kr=C3=BCger?= Date: Thu, 6 Aug 2026 10:35:29 +0200 Subject: [PATCH] Fix casing of Cosmos DB Shell command bar button label --- .../Menus/CommandBar/CommandBarComponentButtonFactory.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx index 911191e0d..c0e8f7fc9 100644 --- a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx +++ b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx @@ -513,7 +513,10 @@ function createOpenTerminalButtonByKind( return ""; } }; - const label = `Open ${terminalFriendlyName()} shell`; + const label = + terminalKind === ViewModels.TerminalKind.CosmosDB + ? `Open ${terminalFriendlyName()} Shell` + : `Open ${terminalFriendlyName()} shell`; const tooltip = "This feature is not yet available in your account's region. View supported regions here: https://aka.ms/cosmos-enable-notebooks."; const isNativeAuthDisabled = terminalKind === ViewModels.TerminalKind.VCoreMongo && isVCoreMongoNativeAuthDisabled();