fix: missing spacing

This commit is contained in:
Methapon Metanipat 2024-08-21 10:49:21 +07:00
parent 6246daa6c0
commit 3c30d70246

View file

@ -680,8 +680,8 @@ const emptyCreateDialog = ref(false);
? customerStats.map((v) => ({
count:
v.name === 'CORP'
? (statsCustomerType?.CORP ?? 0)
: (statsCustomerType?.PERS ?? 0),
? statsCustomerType?.CORP ?? 0
: statsCustomerType?.PERS ?? 0,
label:
v.name === 'CORP'
? 'customerLegalEntity'
@ -2088,6 +2088,7 @@ const emptyCreateDialog = ref(false);
v-model:gender="currentFromDataEmployee.gender"
v-model:birthDate="currentFromDataEmployee.dateOfBirth"
v-model:nationality="currentFromDataEmployee.nationality"
class="q-mb-xl"
/>
<AddressForm
id="form-personal-address"