forked from verdnatura/salix-front
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"
|
||||
>
|
||||
<template #body-cell-ID="props">
|
||||
<QTd :props="props">
|
||||
<QTd :props="props" @click.stop>
|
||||
<span class="link">
|
||||
{{ props.value }}
|
||||
<RouteDescriptorProxy :id="props.value" />
|
||||
|
@ -210,7 +210,7 @@ function navigateToRouteSummary(event, row) {
|
|||
</QTd>
|
||||
</template>
|
||||
<template #body-cell-received="props">
|
||||
<QTd :props="props">
|
||||
<QTd :props="props" @click.stop>
|
||||
<span :class="props.value && 'link'">
|
||||
{{ dashIfEmpty(props.value) }}
|
||||
<InvoiceInDescriptorProxy
|
||||
|
@ -221,7 +221,7 @@ function navigateToRouteSummary(event, row) {
|
|||
</QTd>
|
||||
</template>
|
||||
<template #body-cell-autonomous="props">
|
||||
<QTd :props="props">
|
||||
<QTd :props="props" @click.stop>
|
||||
<span class="link">
|
||||
{{ props.value }}
|
||||
<SupplierDescriptorProxy
|
||||
|
|
Loading…
Reference in New Issue