Skip to content

Commit 0b710f9

Browse files
committed
fix(page-settings): broken route formatting
happened due to auto format on save :/
1 parent 2e33fc9 commit 0b710f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wiki/wiki/doctype/wiki_page/templates/page_settings.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ <h5 class="modal-title page-settings-title">Page Settings</h5>
1818
title="Wiki Space route (can't be modified)">
1919
{{ route.split('/')[0] }}/
2020
</div>
21-
<input type="text" id="pageRoute" name="pageRoute" class="form-control"
22-
style="border-top-left-radius: 0; border-bottom-left-radius: 0;" value="{{ "
23-
/".join(route.split('/')[1:]) }}">
21+
<input value="{{ " /".join(route.split('/')[1:]) }}" type="text" id="pageRoute"
22+
name="pageRoute" class="form-control"
23+
style="border-top-left-radius: 0; border-bottom-left-radius: 0;">
2424
</div>
2525
</div>
2626
<div class="mt-4 flex align-content-center">

0 commit comments

Comments
 (0)