Fix casing of Cosmos DB Shell command bar button label

This commit is contained in:
Mike Krüger
2026-08-06 10:35:29 +02:00
parent 43fe8a002b
commit e17bf8af36
@@ -513,7 +513,10 @@ function createOpenTerminalButtonByKind(
return ""; return "";
} }
}; };
const label = `Open ${terminalFriendlyName()} shell`; const label =
terminalKind === ViewModels.TerminalKind.CosmosDB
? `Open ${terminalFriendlyName()} Shell`
: `Open ${terminalFriendlyName()} shell`;
const tooltip = const tooltip =
"This feature is not yet available in your account's region. View supported regions here: https://aka.ms/cosmos-enable-notebooks."; "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(); const isNativeAuthDisabled = terminalKind === ViewModels.TerminalKind.VCoreMongo && isVCoreMongoNativeAuthDisabled();