fix: 11 => update stat & card color

This commit is contained in:
puriphatt 2025-01-20 15:03:32 +07:00
parent 5db8deb83d
commit 26c9345699
2 changed files with 4 additions and 4 deletions

View file

@ -179,13 +179,13 @@ watch(
icon: 'material-symbols-light:receipt-long', icon: 'material-symbols-light:receipt-long',
count: stats[CreditNoteStatus.Pending], count: stats[CreditNoteStatus.Pending],
label: `creditNote.stats.${CreditNoteStatus.Pending}`, label: `creditNote.stats.${CreditNoteStatus.Pending}`,
color: 'blue', color: 'orange',
}, },
{ {
icon: 'mdi-check-decagram-outline', icon: 'mdi-check-decagram-outline',
count: stats[CreditNoteStatus.Success], count: stats[CreditNoteStatus.Success],
label: `creditNote.stats.${CreditNoteStatus.Success}`, label: `creditNote.stats.${CreditNoteStatus.Success}`,
color: 'orange', color: 'blue',
}, },
]" ]"
:dark="$q.dark.isActive" :dark="$q.dark.isActive"

View file

@ -73,6 +73,6 @@ export const columns = [
] as const satisfies QTableProps['columns']; ] as const satisfies QTableProps['columns'];
export const hslaColors: Record<string, string> = { export const hslaColors: Record<string, string> = {
Pending: '--blue-6-hsl', Pending: '--orange-5-hsl',
Success: '--red-6-hsl', Success: '--blue-6-hsl',
}; };