Fix route autonomous table links
This commit is contained in:
parent
698a88e6f0
commit
0cfdd78328
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue