From d510c4967023524f00ec707c33358eeaba90c199 Mon Sep 17 00:00:00 2001 From: provira Date: Wed, 16 Apr 2025 08:08:09 +0200 Subject: [PATCH] feat: refs #7449 added padding to claimLines fields --- src/pages/Claim/Card/ClaimLines.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/Claim/Card/ClaimLines.vue b/src/pages/Claim/Card/ClaimLines.vue index ea93b05c3..fcf47a9ba 100644 --- a/src/pages/Claim/Card/ClaimLines.vue +++ b/src/pages/Claim/Card/ClaimLines.vue @@ -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;' }, ]);