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) => ({
|
? customerStats.map((v) => ({
|
||||||
count:
|
count:
|
||||||
v.name === 'CORP'
|
v.name === 'CORP'
|
||||||
? (statsCustomerType?.CORP ?? 0)
|
? statsCustomerType?.CORP ?? 0
|
||||||
: (statsCustomerType?.PERS ?? 0),
|
: statsCustomerType?.PERS ?? 0,
|
||||||
label:
|
label:
|
||||||
v.name === 'CORP'
|
v.name === 'CORP'
|
||||||
? 'customerLegalEntity'
|
? 'customerLegalEntity'
|
||||||
|
|
@ -2088,6 +2088,7 @@ const emptyCreateDialog = ref(false);
|
||||||
v-model:gender="currentFromDataEmployee.gender"
|
v-model:gender="currentFromDataEmployee.gender"
|
||||||
v-model:birthDate="currentFromDataEmployee.dateOfBirth"
|
v-model:birthDate="currentFromDataEmployee.dateOfBirth"
|
||||||
v-model:nationality="currentFromDataEmployee.nationality"
|
v-model:nationality="currentFromDataEmployee.nationality"
|
||||||
|
class="q-mb-xl"
|
||||||
/>
|
/>
|
||||||
<AddressForm
|
<AddressForm
|
||||||
id="form-personal-address"
|
id="form-personal-address"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue