diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue index e393581d..047b4b98 100644 --- a/src/pages/03_customer-management/MainPage.vue +++ b/src/pages/03_customer-management/MainPage.vue @@ -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" />