fix: show gender
This commit is contained in:
parent
3458517de4
commit
4ab245834d
3 changed files with 4 additions and 2 deletions
|
|
@ -1370,7 +1370,7 @@ watch([inputSearch, currentStatus], async () => {
|
|||
size="18px"
|
||||
/>
|
||||
<div v-if="statsEmployeeGender">
|
||||
{{ statsEmployeeGender.female }} คน
|
||||
{{ statsEmployeeGender.female ?? 0 }} {{ $t('person') }}
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
@ -1389,7 +1389,7 @@ watch([inputSearch, currentStatus], async () => {
|
|||
>
|
||||
<q-icon name="mdi-gender-male" class="q-mr-sm" size="18px" />
|
||||
<div v-if="statsEmployeeGender">
|
||||
{{ statsEmployeeGender.male }} คน
|
||||
{{ statsEmployeeGender.male ?? 0 }} {{ $t('person') }}
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue