From 69fd1a7e1040af9369809fcdeff2fc548f0ce2c5 Mon Sep 17 00:00:00 2001 From: acazares Date: Sun, 11 Jan 2026 19:07:56 -0600 Subject: [PATCH] feat: update currency and type display to uppercase for consistency --- frontend/src/lib/components/dashboard/invoices/columns.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/lib/components/dashboard/invoices/columns.ts b/frontend/src/lib/components/dashboard/invoices/columns.ts index e9860959..821ff1cc 100644 --- a/frontend/src/lib/components/dashboard/invoices/columns.ts +++ b/frontend/src/lib/components/dashboard/invoices/columns.ts @@ -175,7 +175,7 @@ export function createColumns(onSuccess?: () => void): ColumnDef[] { const { currency } = getCurrency(); return { render: () => - `
${currency || '-'}
` + `
${currency?.toLocaleUpperCase() || '-'}
` }; }); return renderSnippet(currencySnippet, { currency }); @@ -208,7 +208,7 @@ export function createColumns(onSuccess?: () => void): ColumnDef[] { const { type } = getType(); return { render: () => - `
${type || '-'}
` + `
${type?.toUpperCase() || '-'}
` }; }); return renderSnippet(weightSnippet, { type: weightType });