perf: refs #7134 format columns
This commit is contained in:
parent
ea9e099523
commit
100e3b4d72
|
@ -57,14 +57,14 @@ const columns = computed(() => [
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'invoiceEuros',
|
name: 'invoiceEuros',
|
||||||
label: t('Debit'),
|
label: t('Debit'),
|
||||||
format: ({ invoiceEuros }) => invoiceEuros && toCurrency(invoiceEuros),
|
format: ({ invoiceEuros }) => toCurrency(invoiceEuros),
|
||||||
isId: true,
|
isId: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'paymentEuros',
|
name: 'paymentEuros',
|
||||||
label: t('Havings'),
|
label: t('Havings'),
|
||||||
format: ({ paymentEuros }) => paymentEuros && toCurrency(paymentEuros),
|
format: ({ paymentEuros }) => toCurrency(paymentEuros),
|
||||||
cardVisible: true,
|
cardVisible: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue