From 33bce93b83cf2e8b3c704c8d2fbe0a6290d54179 Mon Sep 17 00:00:00 2001 From: vermeul <swen@ethz.ch> Date: Thu, 18 Jul 2019 00:05:58 +0200 Subject: [PATCH] fixed another path problem --- jupyter-openbis-extension/static/connectionDialog.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/jupyter-openbis-extension/static/connectionDialog.js b/jupyter-openbis-extension/static/connectionDialog.js index 81eed5f..ea1c86d 100644 --- a/jupyter-openbis-extension/static/connectionDialog.js +++ b/jupyter-openbis-extension/static/connectionDialog.js @@ -231,7 +231,13 @@ define( // by combining the notebook_dir (from the jupyter configuration) and the relative notebook_path let re = new RegExp(env.notebook.notebook_name+"$") rel_path = env.notebook.notebook_path.replace(re, "") - let default_working_dir = data.notebook_dir + "/" + rel_path + let default_working_dir = "" + if (data.notebook_dir.endsWith('/')) { + default_working_dir = data.notebook_dir + rel_path + } + else { + default_working_dir = data.notebook_dir + "/" + rel_path + } working_dir_in.value = state.working_dir ? state.working_dir : default_working_dir state.working_dir_element = working_dir_in -- GitLab