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>
<VnLv label="ID" :value="row.id" />
<VnLv :label="t('claim.list.customer')" @click.stop>
<VnLv :label="t('claim.list.customer')">
<template #value>
<span class="link">
<span class="link" @click.stop>
{{ row.clientName }}
<CustomerDescriptorProxy :id="row.clientFk" />
</span>
</template>
</VnLv>
<VnLv :label="t('claim.list.assignedTo')" @click.stop>
<VnLv :label="t('claim.list.assignedTo')">
<template #value>
<span>
<span @click.stop>
<VnUserLink
:name="row.workerName"
:worker-id="row.workerFk"