Merge pull request 'Hotfix[routeSummary]: Show in table client id instead of client's name' () from Hotfix-RouteClient into master

Reviewed-on: 
Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
Jon Elias 2025-04-15 13:22:36 +00:00
commit 77db8392cc
1 changed files with 3 additions and 3 deletions
src/pages/Route/Card

View File

@ -233,10 +233,10 @@ const ticketColumns = ref([
</span>
</QTd>
</template>
<template #body-cell-client="{ value, row }">
<QTd auto-width>
<template #body-cell-client="{ row }">
<QTd>
<span class="link">
{{ value }}
{{ row.clientFk }}
<CustomerDescriptorProxy :id="row?.clientFk" />
</span>
</QTd>