mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-09 03:50:45 +08:00
add missing url-encoding of base_url in terminal/edit templates
This was fixed in the notebook and tree views, but overlooked in edit, terminal
This commit is contained in:
parent
3f83ff525b
commit
8c038e3ddb
@ -11,7 +11,7 @@
|
||||
{% block bodyclasses %}edit_app {{super()}}{% endblock %}
|
||||
|
||||
{% block params %}
|
||||
data-base-url="{{base_url}}"
|
||||
data-base-url="{{base_url | urlencode}}"
|
||||
data-file-path="{{file_path}}"
|
||||
{{super()}}
|
||||
{% endblock %}
|
||||
|
@ -6,7 +6,7 @@
|
||||
|
||||
{% block params %}
|
||||
|
||||
data-base-url="{{base_url}}"
|
||||
data-base-url="{{base_url | urlencode}}"
|
||||
data-ws-path="{{ws_path}}"
|
||||
|
||||
{% endblock %}
|
||||
|
Loading…
Reference in New Issue
Block a user