From 26c93456995b8cacdef6bbcbfbffd8f56c610e56 Mon Sep 17 00:00:00 2001 From: puriphatt Date: Mon, 20 Jan 2025 15:03:32 +0700 Subject: [PATCH] fix: 11 => update stat & card color --- src/pages/11_credit-note/MainPage.vue | 4 ++-- src/pages/11_credit-note/constants.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/11_credit-note/MainPage.vue b/src/pages/11_credit-note/MainPage.vue index 436dc10f..7a4d6c2f 100644 --- a/src/pages/11_credit-note/MainPage.vue +++ b/src/pages/11_credit-note/MainPage.vue @@ -179,13 +179,13 @@ watch( icon: 'material-symbols-light:receipt-long', count: stats[CreditNoteStatus.Pending], label: `creditNote.stats.${CreditNoteStatus.Pending}`, - color: 'blue', + color: 'orange', }, { icon: 'mdi-check-decagram-outline', count: stats[CreditNoteStatus.Success], label: `creditNote.stats.${CreditNoteStatus.Success}`, - color: 'orange', + color: 'blue', }, ]" :dark="$q.dark.isActive" diff --git a/src/pages/11_credit-note/constants.ts b/src/pages/11_credit-note/constants.ts index 78065525..70328499 100644 --- a/src/pages/11_credit-note/constants.ts +++ b/src/pages/11_credit-note/constants.ts @@ -73,6 +73,6 @@ export const columns = [ ] as const satisfies QTableProps['columns']; export const hslaColors: Record = { - Pending: '--blue-6-hsl', - Success: '--red-6-hsl', + Pending: '--orange-5-hsl', + Success: '--blue-6-hsl', };