From 4b69b0bc09ae079c0cf66170923b5009e700b72f Mon Sep 17 00:00:00 2001 From: Oni-Men Date: Fri, 30 Aug 2019 07:25:32 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=9A=E3=83=BC=E3=82=B8URL=E3=81=8C?= =?UTF-8?q?=E7=A9=BA=E3=81=AE=E6=99=82currentName=E3=82=92=E4=BD=BF?= =?UTF-8?q?=E3=81=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/app/common/views/pages/page-editor/page-editor.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,