From 1d2a7663f5c6f0668a8b56ab715848fe58072235 Mon Sep 17 00:00:00 2001 From: Chris-MS-896 <64865559+Chris-MS-896@users.noreply.github.com> Date: Tue, 26 Jan 2021 17:21:52 -0600 Subject: [PATCH] no message --- src/Explorer/Notebook/NotebookContainerClient.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Explorer/Notebook/NotebookContainerClient.ts b/src/Explorer/Notebook/NotebookContainerClient.ts index 7d5a82318..feaa3db01 100644 --- a/src/Explorer/Notebook/NotebookContainerClient.ts +++ b/src/Explorer/Notebook/NotebookContainerClient.ts @@ -118,8 +118,8 @@ export class NotebookContainerClient { private getNotebookServerConfig(): { notebookServerEndpoint: string; authToken: string } { let authToken: string, - notebookServerEndpoint = this.notebookServerInfo().notebookServerEndpoint, - token = this.notebookServerInfo().authToken; + notebookServerEndpoint = this.notebookServerInfo().notebookServerEndpoint || "", + token = this.notebookServerInfo().authToken || ""; if (token) { authToken = `Token ${token}`; }