fix: error undefined
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 7s
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 7s
This commit is contained in:
parent
02d02cf3a1
commit
473e272328
1 changed files with 4 additions and 4 deletions
|
|
@ -314,7 +314,7 @@ function handleCheckAll() {
|
||||||
/> -->
|
/> -->
|
||||||
<AvatarGroup
|
<AvatarGroup
|
||||||
:data="[
|
:data="[
|
||||||
...responsiblePerson(props.row.quotation).user.map((v) => ({
|
...(responsiblePerson(props.row.quotation)?.user.map((v) => ({
|
||||||
name:
|
name:
|
||||||
$i18n.locale === 'eng'
|
$i18n.locale === 'eng'
|
||||||
? `${v.firstNameEN} ${v.lastNameEN}`
|
? `${v.firstNameEN} ${v.lastNameEN}`
|
||||||
|
|
@ -324,11 +324,11 @@ function handleCheckAll() {
|
||||||
? `/no-img-man.png`
|
? `/no-img-man.png`
|
||||||
: `/no-img-female.png`
|
: `/no-img-female.png`
|
||||||
: `${baseUrl}/user/${v.id}/profile-image/${v.selectedImage}`,
|
: `${baseUrl}/user/${v.id}/profile-image/${v.selectedImage}`,
|
||||||
})),
|
})) || []),
|
||||||
...responsiblePerson(props.row.quotation).group.map((g) => ({
|
...(responsiblePerson(props.row.quotation)?.group.map((g) => ({
|
||||||
name: `${$t('general.group')} ${g.group}`,
|
name: `${$t('general.group')} ${g.group}`,
|
||||||
imgUrl: '/img-group.png',
|
imgUrl: '/img-group.png',
|
||||||
})),
|
})) || []),
|
||||||
]"
|
]"
|
||||||
></AvatarGroup>
|
></AvatarGroup>
|
||||||
</q-td>
|
</q-td>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue