Fix[customereSummaryTable]: Added witdth when opening ticket summary #1299

Merged
jon merged 2 commits from Fix-ticketDescriptorWidth into dev 2025-01-28 10:51:26 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 9991c4a462 - Show all commits

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'),
},
],
},