Skip to content

Commit

Permalink
Fix some full URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Sep 18, 2021
1 parent a81dbd6 commit af732dc
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions plugins/jupyterlab/fps_jupyterlab/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,17 +336,17 @@ def get_index(workspace, collaborative, base_url="/"):
"exposeAppInBrowser": False,
"extraLabextensionsPath": [],
"federated_extensions": federated_extensions,
"fullAppUrl": "/lab",
"fullLabextensionsUrl": "/lab/extensions",
"fullLicensesUrl": "/lab/api/licenses",
"fullListingsUrl": "/lab/api/listings",
"fullMathjaxUrl": "/static/notebook/components/MathJax/MathJax.js",
"fullSettingsUrl": "/lab/api/settings",
"fullAppUrl": f"{base_url}lab",
"fullLabextensionsUrl": f"{base_url}lab/extensions",
"fullLicensesUrl": f"{base_url}lab/api/licenses",
"fullListingsUrl": f"{base_url}lab/api/listings",
"fullMathjaxUrl": f"{base_url}static/notebook/components/MathJax/MathJax.js",
"fullSettingsUrl": f"{base_url}lab/api/settings",
"fullStaticUrl": full_static_url,
"fullThemesUrl": "/lab/api/themes",
"fullTranslationsApiUrl": "/lab/api/translations",
"fullTreeUrl": "/lab/tree",
"fullWorkspacesApiUrl": "/lab/api/workspaces",
"fullThemesUrl": f"{base_url}lab/api/themes",
"fullTranslationsApiUrl": f"{base_url}lab/api/translations",
"fullTreeUrl": f"{base_url}lab/tree",
"fullWorkspacesApiUrl": f"{base_url}lab/api/workspaces",
"ignorePlugins": [],
"labextensionsUrl": "/lab/extensions",
"licensesUrl": "/lab/api/licenses",
Expand Down

0 comments on commit af732dc

Please sign in to comment.