fix: refs #8647 some swarning

This commit is contained in:
Javier Segarra 2025-02-24 13:16:43 +01:00
parent bc3334529b
commit cf397a38ce
1 changed files with 4 additions and 1 deletions
src/pages/Ticket/Card

View File

@ -58,7 +58,10 @@ function ticketFilter(ticket) {
<template #value>
<span class="link">
{{ entity.clientFk }}
<CustomerDescriptorProxy :id="entity.client?.id" />
<CustomerDescriptorProxy
v-if="entity.client?.id"
:id="entity.client.id"
/>
</span>
</template>
</VnLv>