Fix the title of the page, showing the name instead of the id

This commit is contained in:
Dean Bartok-Thomas 2019-09-02 16:05:34 +01:00
parent cfd42544f9
commit d22924b507
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ export default {
},
setPageTitle() {
const title = 'Edit Account'
document.title = `${title} - ${this.postForm.id}`
document.title = `${title} - ${this.postForm.name}`
},
submitForm() {
this.$refs.postForm.validate(valid => {