From 03ca55c2ffc1235745463941ad0158a896aaea00 Mon Sep 17 00:00:00 2001 From: "Justin Kolasa (from Dev Box)" Date: Wed, 30 Apr 2025 09:39:10 -0400 Subject: [PATCH] Fixed vscode url --- src/Explorer/Explorer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Explorer/Explorer.tsx b/src/Explorer/Explorer.tsx index fdf42107f..3e3a77ff2 100644 --- a/src/Explorer/Explorer.tsx +++ b/src/Explorer/Explorer.tsx @@ -324,7 +324,7 @@ export default class Explorer { const resourceId = encodeURIComponent(userContext.databaseAccount.id); const database = encodeURIComponent(activeTab?.collection?.databaseId); const container = encodeURIComponent(activeTab?.collection?.id()); - const baseUrl = `vsco://ms-azuretools.vscode-cosmosdb?resourceId=${resourceId}`; + const baseUrl = `vscode://ms-azuretools.vscode-cosmosdb?resourceId=${resourceId}`; const vscodeUrl = activeTab ? `${baseUrl}&database=${database}&container=${container}` : baseUrl; let vsCodeNotOpened = false;