fix: missing prefix in dialog header
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 6s
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 6s
This commit is contained in:
parent
7d1a32efb4
commit
76cfb5fcec
1 changed files with 5 additions and 2 deletions
|
|
@ -1554,9 +1554,12 @@ watch(
|
|||
hide-action
|
||||
:is-edit="infoDrawerEdit"
|
||||
:title="
|
||||
locale === 'eng'
|
||||
(currentUser.namePrefix
|
||||
? $t('customer.form.prefix.' + currentUser.namePrefix) + ' '
|
||||
: '') +
|
||||
(locale === 'eng'
|
||||
? `${currentUser.firstNameEN} ${currentUser.lastNameEN}`
|
||||
: `${currentUser.firstName || currentUser.firstNameEN} ${currentUser.lastName || currentUser.lastNameEN}`
|
||||
: `${currentUser.firstName || currentUser.firstNameEN} ${currentUser.lastName || currentUser.lastNameEN}`)
|
||||
"
|
||||
v-model:drawerOpen="infoDrawer"
|
||||
:submit="() => onSubmit()"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue