fix: refs #6630 fix click event propagation
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-01-11 12:08:06 +01:00
parent 88b68ef399
commit 77d4e72968
1 changed files with 4 additions and 4 deletions

View File

@ -88,17 +88,17 @@ function viewSummary(id) {
> >
<template #list-items> <template #list-items>
<VnLv label="ID" :value="row.id" /> <VnLv label="ID" :value="row.id" />
<VnLv :label="t('claim.list.customer')" @click.stop> <VnLv :label="t('claim.list.customer')">
<template #value> <template #value>
<span class="link"> <span class="link" @click.stop>
{{ row.clientName }} {{ row.clientName }}
<CustomerDescriptorProxy :id="row.clientFk" /> <CustomerDescriptorProxy :id="row.clientFk" />
</span> </span>
</template> </template>
</VnLv> </VnLv>
<VnLv :label="t('claim.list.assignedTo')" @click.stop> <VnLv :label="t('claim.list.assignedTo')">
<template #value> <template #value>
<span> <span @click.stop>
<VnUserLink <VnUserLink
:name="row.workerName" :name="row.workerName"
:worker-id="row.workerFk" :worker-id="row.workerFk"