#8604: TicketFuture to VnTable #1395
|
@ -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
|
|||||||
{{ row.id }}
|
{{ row.id }}
|
||||||
<TicketDescriptorProxy :id="row.id" />
|
<TicketDescriptorProxy :id="row.id" />
|
||||||
</QBtn>
|
</QBtn>
|
||||||
|
|
Loading…
Reference in New Issue
@clisk.stop