fix: wrong cond
This commit is contained in:
parent
65cc35bc33
commit
1f09edbb59
1 changed files with 4 additions and 3 deletions
|
|
@ -1443,10 +1443,11 @@ watch([inputSearch, currentStatus], async () => {
|
||||||
</q-menu>
|
</q-menu>
|
||||||
</q-btn>
|
</q-btn>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<template
|
<template
|
||||||
v-if="
|
v-if="
|
||||||
listCustomer && totalCustomer > 0 && selectorLabel === 'EMPLOYER'
|
listCustomer &&
|
||||||
|
statsCustomerType.PERS + statsCustomerType.CORP > 0 &&
|
||||||
|
selectorLabel === 'EMPLOYER'
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
|
|
@ -1616,7 +1617,7 @@ watch([inputSearch, currentStatus], async () => {
|
||||||
|
|
||||||
<template
|
<template
|
||||||
v-if="
|
v-if="
|
||||||
(statsCustomerType.CORP + statsCustomerType.PERS &&
|
(statsCustomerType.CORP + statsCustomerType.PERS === 0 &&
|
||||||
selectorLabel === 'EMPLOYER') ||
|
selectorLabel === 'EMPLOYER') ||
|
||||||
(statsEmployee === 0 && selectorLabel === 'EMPLOYEE')
|
(statsEmployee === 0 && selectorLabel === 'EMPLOYEE')
|
||||||
"
|
"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue