feat: refs #7449 added padding to claimLines fields
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Pau Rovira 2025-04-16 08:08:09 +02:00
parent 90b534ccdc
commit d510c49670
1 changed files with 4 additions and 0 deletions

View File

@ -78,6 +78,8 @@ const columns = computed(() => [
label: t('Quantity'),
field: ({ sale }) => sale.quantity,
sortable: true,
style: 'padding-right: 20px;',
headerStyle: 'padding-right: 20px;'
},
{
name: 'claimed',
@ -110,6 +112,8 @@ const columns = computed(() => [
field: ({ sale }) => totalRow(sale),
format: (value) => toCurrency(value),
sortable: true,
style: 'padding-right: 20px;',
headerStyle: 'padding-right: 20px;'
},
]);