diff --git a/src/pages/02_personnel-management/MainPage.vue b/src/pages/02_personnel-management/MainPage.vue index 41786330..85ec666f 100644 --- a/src/pages/02_personnel-management/MainPage.vue +++ b/src/pages/02_personnel-management/MainPage.vue @@ -558,7 +558,8 @@ async function triggerChangeStatus(id: string, status: string) { return await new Promise((resolve, reject) => { dialog({ color: status !== 'INACTIVE' ? 'warning' : 'info', - icon: status !== 'INACTIVE' ? 'mdi-alert' : 'mdi-comment-alert', + icon: + status !== 'INACTIVE' ? 'mdi-alert' : 'mdi-message-processing-outline', title: t('confirmChangeStatusTitle'), actionText: status !== 'INACTIVE' ? t('switchOffLabel') : t('switchOnLabel'), diff --git a/src/pages/03_customer-management/MainPage.vue b/src/pages/03_customer-management/MainPage.vue index e6db7b9e..638969a5 100644 --- a/src/pages/03_customer-management/MainPage.vue +++ b/src/pages/03_customer-management/MainPage.vue @@ -363,7 +363,8 @@ async function triggerChangeStatus(id: string, status: string) { return await new Promise((resolve, reject) => { dialog({ color: status !== 'INACTIVE' ? 'warning' : 'info', - icon: status !== 'INACTIVE' ? 'mdi-alert' : 'mdi-comment-alert', + icon: + status !== 'INACTIVE' ? 'mdi-alert' : 'mdi-message-processing-outline', title: t('confirmChangeStatusTitle'), actionText: status !== 'INACTIVE' ? t('switchOffLabel') : t('switchOnLabel'), @@ -654,8 +655,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 +1668,7 @@ watch( { icon: 'mdi-clock-outline', value: props.row.dateOfBirth - ? calculateAge(props.row.dateOfBirth) ?? '' + ? (calculateAge(props.row.dateOfBirth) ?? '') : '', }, ], diff --git a/src/pages/04_product-service/MainPage.vue b/src/pages/04_product-service/MainPage.vue index 58f7f393..766b9f02 100644 --- a/src/pages/04_product-service/MainPage.vue +++ b/src/pages/04_product-service/MainPage.vue @@ -715,7 +715,8 @@ async function triggerChangeStatus( return await new Promise((resolve, reject) => { dialog({ color: status !== 'INACTIVE' ? 'warning' : 'info', - icon: status !== 'INACTIVE' ? 'mdi-alert' : 'mdi-comment-alert', + icon: + status !== 'INACTIVE' ? 'mdi-alert' : 'mdi-message-processing-outline', title: t('confirmChangeStatusTitle'), actionText: status !== 'INACTIVE' ? t('switchOffLabel') : t('switchOnLabel'), diff --git a/src/pages/MainPage.vue b/src/pages/MainPage.vue index a84f970f..1a34c250 100644 --- a/src/pages/MainPage.vue +++ b/src/pages/MainPage.vue @@ -14,11 +14,10 @@ const menu = [ }, { value: 'personnel-management', - icon: 'isax-frame5', + icon: 'fa6-solid:building-user', color: 'cyan', title: 'mainPersonnelTitle', caption: 'mainPersonnelCaption', - isax: true, }, { value: 'customer-management',