#8604: TicketFuture to VnTable #1395

Merged
jon merged 13 commits from 8604-FixTicketFuture into dev 2025-02-14 12:14:00 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 90a34d56f7 - Show all commits

View File

@ -186,9 +186,9 @@ watch(
originElRef.value.setAttribute('colspan', '9'); originElRef.value.setAttribute('colspan', '9');
destinationElRef.value.textContent = `${t( destinationElRef.value.textContent = `${t(
'advanceTickets.destination', 'advanceTickets.origin',
)} ${toDateTimeFormat(vnTableRef.value.params.dateToAdvance)}`; )} ${toDateTimeFormat(vnTableRef.value.params.dateToAdvance)}`;
originElRef.value.textContent = `${t('advanceTickets.origin')} ${toDateTimeFormat( originElRef.value.textContent = `${t('advanceTickets.destination')} ${toDateTimeFormat(
vnTableRef.value.params.dateFuture, vnTableRef.value.params.dateFuture,
)}`; )}`;
@ -203,7 +203,7 @@ watch(
() => { () => {
if (originElRef.value && destinationElRef.value) { if (originElRef.value && destinationElRef.value) {
destinationElRef.value.textContent = `${t( destinationElRef.value.textContent = `${t(
'advanceTickets.destination', 'advanceTickets.origin',
)} ${toDateTimeFormat(vnTableRef.value.params.dateToAdvance)}`; )} ${toDateTimeFormat(vnTableRef.value.params.dateToAdvance)}`;
originElRef.value.textContent = `${t('advanceTickets.origin')} ${toDateTimeFormat( originElRef.value.textContent = `${t('advanceTickets.origin')} ${toDateTimeFormat(
vnTableRef.value.params.dateFuture, vnTableRef.value.params.dateFuture,
@ -360,7 +360,7 @@ watch(
</span> </span>
</template> </template>
<template #column-id="{ row }"> <template #column-id="{ row }">
<QBtn flat class="link" @click.stop> <QBtn flat class="link" @click.stop dense>
jon marked this conversation as resolved Outdated

@clisk.stop

@clisk.stop
{{ row.id }} {{ row.id }}
<TicketDescriptorProxy :id="row.id" /> <TicketDescriptorProxy :id="row.id" />
</QBtn> </QBtn>