fix: 11 => update stat & card color
This commit is contained in:
parent
5db8deb83d
commit
26c9345699
2 changed files with 4 additions and 4 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -73,6 +73,6 @@ export const columns = [
|
|||
] as const satisfies QTableProps['columns'];
|
||||
|
||||
export const hslaColors: Record<string, string> = {
|
||||
Pending: '--blue-6-hsl',
|
||||
Success: '--red-6-hsl',
|
||||
Pending: '--orange-5-hsl',
|
||||
Success: '--blue-6-hsl',
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue