#6630 fix css vnLog #150

Merged
jorgep merged 13 commits from 6630-fixCssVnLog into dev 2024-01-12 07:28:45 +00:00
1 changed files with 4 additions and 4 deletions
Showing only changes of commit 77d4e72968 - Show all commits

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"