Fix route autonomous table links

This commit is contained in:
Kevin Martinez 2024-02-26 14:16:12 -03:00
parent 698a88e6f0
commit 0cfdd78328
1 changed files with 3 additions and 3 deletions

View File

@ -202,7 +202,7 @@ function navigateToRouteSummary(event, row) {
@row-click="navigateToRouteSummary" @row-click="navigateToRouteSummary"
> >
<template #body-cell-ID="props"> <template #body-cell-ID="props">
<QTd :props="props"> <QTd :props="props" @click.stop>
<span class="link"> <span class="link">
{{ props.value }} {{ props.value }}
<RouteDescriptorProxy :id="props.value" /> <RouteDescriptorProxy :id="props.value" />
@ -210,7 +210,7 @@ function navigateToRouteSummary(event, row) {
</QTd> </QTd>
</template> </template>
<template #body-cell-received="props"> <template #body-cell-received="props">
<QTd :props="props"> <QTd :props="props" @click.stop>
<span :class="props.value && 'link'"> <span :class="props.value && 'link'">
{{ dashIfEmpty(props.value) }} {{ dashIfEmpty(props.value) }}
<InvoiceInDescriptorProxy <InvoiceInDescriptorProxy
@ -221,7 +221,7 @@ function navigateToRouteSummary(event, row) {
</QTd> </QTd>
</template> </template>
<template #body-cell-autonomous="props"> <template #body-cell-autonomous="props">
<QTd :props="props"> <QTd :props="props" @click.stop>
<span class="link"> <span class="link">
{{ props.value }} {{ props.value }}
<SupplierDescriptorProxy <SupplierDescriptorProxy