From ee39d9594eb94407baf004e6e1d5993c25f10709 Mon Sep 17 00:00:00 2001
From: syuilo <Syuilotan@yahoo.co.jp>
Date: Mon, 2 Sep 2019 06:04:12 +0900
Subject: [PATCH] Improve readability

---
 .../views/pages/page-editor/page-editor.vue   | 26 ++++++++-----------
 1 file changed, 11 insertions(+), 15 deletions(-)

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 0e7417700..cae531e1f 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
@@ -234,19 +234,19 @@ export default Vue.extend({
 
 			function onError(err) {
 				if (err.id == '3d81ceae-475f-4600-b2a8-2bc116157532') {
-						if (err.info.param == 'name') {
-							this.$root.dialog({
-								type: 'error',
-								title: this.$t('title-invalid-name'),
-								text: this.$t('text-invalid-name')
-							});
-						}
-					} else if (err.code == 'NAME_ALREADY_EXISTS') {
+					if (err.info.param == 'name') {
 						this.$root.dialog({
 							type: 'error',
-							text: this.$t('name-already-exists')
+							title: this.$t('title-invalid-name'),
+							text: this.$t('text-invalid-name')
 						});
 					}
+				} else if (err.code == 'NAME_ALREADY_EXISTS') {
+					this.$root.dialog({
+						type: 'error',
+						text: this.$t('name-already-exists')
+					});
+				}
 			}
 
 			if (this.pageId) {
@@ -258,9 +258,7 @@ export default Vue.extend({
 						type: 'success',
 						text: this.$t('page-updated')
 					});
-				}).catch(err => {
-					onError(err);
-				});
+				}).catch(onError);
 			} else {
 				this.$root.api('pages/create', options)
 				.then(page => {
@@ -271,9 +269,7 @@ export default Vue.extend({
 						text: this.$t('page-created')
 					});
 					this.$router.push(`/i/pages/edit/${this.pageId}`);
-				}).catch(err => {
-					onError(err);
-				});
+				}).catch(onError);
 			}
 		},