Improve readability

This commit is contained in:
syuilo 2019-09-02 06:04:12 +09:00
parent cefd2a4c54
commit ee39d9594e
1 changed files with 11 additions and 15 deletions

View File

@ -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);
}
},