perf: refs #7134 format columns

This commit is contained in:
Javier Segarra 2025-01-21 14:56:07 +01:00
parent ea9e099523
commit 100e3b4d72
1 changed files with 2 additions and 2 deletions

View File

@ -57,14 +57,14 @@ const columns = computed(() => [
align: 'left',
name: 'invoiceEuros',
label: t('Debit'),
format: ({ invoiceEuros }) => invoiceEuros && toCurrency(invoiceEuros),
format: ({ invoiceEuros }) => toCurrency(invoiceEuros),
isId: true,
},
{
align: 'left',
name: 'paymentEuros',
label: t('Havings'),
format: ({ paymentEuros }) => paymentEuros && toCurrency(paymentEuros),
format: ({ paymentEuros }) => toCurrency(paymentEuros),
cardVisible: true,
},
{