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();