no message

This commit is contained in:
Chris-MS-896 2021-01-26 17:21:52 -06:00
parent b0b973b21a
commit 1d2a7663f5

View File

@ -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}`;
}