PMCORE-3302:Custom cases list: does not work the Owner tooltip

This commit is contained in:
fabio
2021-09-09 17:38:12 -04:00
parent f53d9c86c7
commit d217336479
2 changed files with 5 additions and 4 deletions

View File

@@ -17,7 +17,7 @@
</div> </div>
</div> </div>
<div slot="owner" slot-scope="props"> <div slot="owner" slot-scope="props">
<OwnerCell :data="props.row.owner" /> <OwnerCell :data="props.row.owner" />
</div> </div>
</v-server-table> </v-server-table>
</div> </div>
@@ -175,7 +175,8 @@ export default {
userInfo: userDataFormat || "", userInfo: userDataFormat || "",
userEmail: v.userEmail, userEmail: v.userEmail,
userId: v.userId, userId: v.userId,
userPosition: v.userPosition || "" userPosition: v.userPosition || "",
caseListId: v.id
} }
data.push(v); data.push(v);
}); });

View File

@@ -1,6 +1,6 @@
<template> <template>
<div class="grouped-cell"> <div class="grouped-cell">
<div class="d-flex justify-content-center avatar" id="user"> <div class="d-flex justify-content-center avatar" :id="`label-${data.caseListId}`">
<b-avatar <b-avatar
variant="info" variant="info"
:src="data.userAvatar" :src="data.userAvatar"
@@ -8,7 +8,7 @@
></b-avatar> ></b-avatar>
</div> </div>
<b-popover <b-popover
target="user" :target="`label-${data.caseListId}`"
placement="top" placement="top"
ref="popover" ref="popover"
triggers="hover" triggers="hover"