From a25bd3bcb0aad69d9d351c2f5d5c955a6f475ae4 Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:30:03 +0700 Subject: [PATCH] chore: format --- src/pages/03_customer-management/MainPage.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue index 287707fd..f093bd45 100644 --- a/src/pages/03_customer-management/MainPage.vue +++ b/src/pages/03_customer-management/MainPage.vue @@ -654,8 +654,8 @@ watch( ? customerStats.map((v) => ({ count: v.name === 'CORP' - ? (statsCustomerType?.CORP ?? 0) - : (statsCustomerType?.PERS ?? 0), + ? statsCustomerType?.CORP ?? 0 + : statsCustomerType?.PERS ?? 0, label: v.name === 'CORP' ? 'customerLegalEntity' @@ -1667,7 +1667,7 @@ watch( { icon: 'mdi-clock-outline', value: props.row.dateOfBirth - ? (calculateAge(props.row.dateOfBirth) ?? '') + ? calculateAge(props.row.dateOfBirth) ?? '' : '', }, ],