Fix casing of Cosmos DB Shell command bar button label (#2552)

* Fix casing of Cosmos DB Shell command bar button label

* Capitalize Shell in all terminal button labels for consistency
This commit is contained in:
Mike Krüger
2026-08-17 11:13:21 +02:00
committed by GitHub
parent 12ad23a061
commit 0b38a6be4d
2 changed files with 7 additions and 7 deletions
@@ -513,7 +513,7 @@ function createOpenTerminalButtonByKind(
return "";
}
};
const label = `Open ${terminalFriendlyName()} shell`;
const label = `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();