fix: missing spacing
This commit is contained in:
parent
6246daa6c0
commit
3c30d70246
1 changed files with 3 additions and 2 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue