From fa8be2bc0ff438ab1ebce0c9b0f3d781b29e5524 Mon Sep 17 00:00:00 2001 From: Srinath Narayanan Date: Wed, 10 Nov 2021 03:35:17 -0800 Subject: [PATCH 1/2] fixed quickstarts (#1157) --- src/Explorer/Explorer.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/Explorer/Explorer.tsx b/src/Explorer/Explorer.tsx index 99c839a45..f100d7b7a 100644 --- a/src/Explorer/Explorer.tsx +++ b/src/Explorer/Explorer.tsx @@ -1204,10 +1204,9 @@ export default class Explorer { } public async handleOpenFileAction(path: string): Promise { - if ( - userContext.features.phoenix === false && - !(await this._containsDefaultNotebookWorkspace(userContext.databaseAccount)) - ) { + if (userContext.features.phoenix) { + await this.allocateContainer(); + } else if (!(await this._containsDefaultNotebookWorkspace(userContext.databaseAccount))) { this._openSetupNotebooksPaneForQuickstart(); } From 27a49e9aa9ccc659d6825c7792132df90faa6666 Mon Sep 17 00:00:00 2001 From: tarazou9 <40870773+tarazou9@users.noreply.github.com> Date: Wed, 10 Nov 2021 06:35:31 -0500 Subject: [PATCH 2/2] add juno test3 to allow list (#1158) * add juno test3 to allow list * remove extra line --- src/ConfigContext.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ConfigContext.ts b/src/ConfigContext.ts index 289e650cb..224d28f8d 100644 --- a/src/ConfigContext.ts +++ b/src/ConfigContext.ts @@ -58,6 +58,7 @@ let configContext: Readonly = { allowedJunoOrigins: [ "https://juno-test.documents-dev.windows-int.net", "https://juno-test2.documents-dev.windows-int.net", + "https://juno-test3.documents-dev.windows-int.net", "https://tools.cosmos.azure.com", "https://tools-staging.cosmos.azure.com", "https://localhost",