diff --git a/src/client/app/common/views/pages/page-editor/page-editor.vue b/src/client/app/common/views/pages/page-editor/page-editor.vue index b8db59da41..d655c9cc6a 100644 --- a/src/client/app/common/views/pages/page-editor/page-editor.vue +++ b/src/client/app/common/views/pages/page-editor/page-editor.vue @@ -222,7 +222,7 @@ export default Vue.extend({ save() { const options = { title: this.title.trim(), - name: this.name.trim(), + name: this.name == '' ? this.currentName : this.name.trim(), summary: this.summary, font: this.font, hideTitleWhenPinned: this.hideTitleWhenPinned,