refactor: refs #8604 changed origin/destination values
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Jon Elias 2025-02-14 12:36:14 +01:00
parent 029c9157e7
commit 90a34d56f7
1 changed files with 4 additions and 4 deletions

View File

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