Merge pull request 'Fix[customereSummaryTable]: Added witdth when opening ticket summary' (!1299) from Fix-ticketDescriptorWidth into dev
gitea/salix-front/pipeline/head This commit looks good Details

Reviewed-on: #1299
Reviewed-by: Javier Segarra <jsegarra@verdnatura.es>
This commit is contained in:
Jon Elias 2025-01-28 10:51:25 +00:00
commit 802af41a10
1 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ const columns = computed(() => [
action: ({ id }) =>
window.open(
router.resolve({ params: { id }, name: 'TicketSale' }).href,
'_blank'
'_blank',
),
isPrimary: true,
},
@ -122,7 +122,7 @@ const columns = computed(() => [
title: t('components.smartCard.viewSummary'),
icon: 'preview',
isPrimary: true,
action: (row) => viewSummary(row.id, TicketSummary),
action: (row) => viewSummary(row.id, TicketSummary, 'lg-width'),
},
],
},