Hotfix[routeSummary]: Show in table client id instead of client's name #1715

Merged
jon merged 2 commits from Hotfix-RouteClient into master 2025-04-15 13:22:38 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit 1d573b5dee - Show all commits

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>