Skip to content

Commit

Permalink
Merge pull request #6473 from afshin/workspaces-base_url
Browse files Browse the repository at this point in the history
Stop using base_url in workspace name.
  • Loading branch information
blink1073 committed Jun 6, 2019
2 parents e2a23cb + 0cbfc4b commit f8be765
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/apputils-extension/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,7 @@ namespace Private {
workspace = ''
): string {
return workspace
? URLExt.join(urls.base, urls.workspaces, workspace)
: URLExt.join(urls.base, urls.page);
? URLExt.join(urls.workspaces, workspace)
: URLExt.join(urls.page);
}
}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def run(self):
setup_args['install_requires'] = [
'notebook>=4.3.1',
'tornado<6',
'jupyterlab_server>=0.3.3,<0.4.0'
'jupyterlab_server>=0.3.4,<0.4.0'
]

setup_args['extras_require'] = {
Expand Down

0 comments on commit f8be765

Please sign in to comment.