From d22924b50761bbce22c972a50bff3122f306accf Mon Sep 17 00:00:00 2001 From: Dean Bartok-Thomas Date: Mon, 2 Sep 2019 16:05:34 +0100 Subject: [PATCH] Fix the title of the page, showing the name instead of the id --- src/views/accounts/components/AccountDetail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/accounts/components/AccountDetail.vue b/src/views/accounts/components/AccountDetail.vue index 4aba4a55..dfbd0191 100644 --- a/src/views/accounts/components/AccountDetail.vue +++ b/src/views/accounts/components/AccountDetail.vue @@ -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 => {