Skip to content

Commit

Permalink
fix(page-settings): space between paths
Browse files Browse the repository at this point in the history
again caused by format on autosave
  • Loading branch information
BreadGenie committed Apr 17, 2024
1 parent a095c13 commit 2b26898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wiki/wiki/doctype/wiki_page/templates/page_settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h5 class="modal-title page-settings-title">Page Settings</h5>
<div class="text-sm wiki-space-route-block" title="Wiki Space route (can't be modified)">
{{ route.split('/')[0] }}/
</div>
<input value="{{ " /".join(route.split('/')[1:]) }}" type="text" id="pageRoute"
<input value="{{ '/'.join(route.split('/')[1:]) }}" type="text" id="pageRoute"
name="pageRoute" class="form-control"
style="border-top-left-radius: 0; border-bottom-left-radius: 0;">
</div>
Expand Down

0 comments on commit 2b26898

Please sign in to comment.