From a5e1b37ba64594d34dfb663c7ab9d3d655e14ad2 Mon Sep 17 00:00:00 2001 From: vchske Date: Wed, 8 Nov 2023 16:04:06 -0800 Subject: [PATCH] Bugbash updates (#1684) * Minor changes to vcore mongo quickstart based on feedback * Text change vcore to vCore --- .../Menus/CommandBar/CommandBarComponentButtonFactory.test.ts | 2 +- .../Menus/CommandBar/CommandBarComponentButtonFactory.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.test.ts b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.test.ts index 3f1ecfc42..677df81de 100644 --- a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.test.ts +++ b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.test.ts @@ -345,7 +345,7 @@ describe("CommandBarComponentButtonFactory tests", () => { describe("Open Postgres and vCore Mongo buttons", () => { const openPostgresShellButtonLabel = "Open PSQL shell"; - const openVCoreMongoShellButtonLabel = "Open MongoDB (vcore) shell"; + const openVCoreMongoShellButtonLabel = "Open MongoDB (vCore) shell"; beforeAll(() => { mockExplorer = {} as Explorer; diff --git a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx index 3d30fa261..94c1726f6 100644 --- a/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx +++ b/src/Explorer/Menus/CommandBar/CommandBarComponentButtonFactory.tsx @@ -523,7 +523,7 @@ function createOpenTerminalButtonByKind( case ViewModels.TerminalKind.Postgres: return "PSQL"; case ViewModels.TerminalKind.VCoreMongo: - return "MongoDB (vcore)"; + return "MongoDB (vCore)"; default: return ""; }