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

@@ -175,7 +175,8 @@ export default {
userInfo: userDataFormat || "",
userEmail: v.userEmail,
userId: v.userId,
userPosition: v.userPosition || ""
userPosition: v.userPosition || "",
caseListId: v.id
}
data.push(v);
});

View File

@@ -1,6 +1,6 @@
<template>
<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
variant="info"
:src="data.userAvatar"
@@ -8,7 +8,7 @@
></b-avatar>
</div>
<b-popover
target="user"
:target="`label-${data.caseListId}`"
placement="top"
ref="popover"
triggers="hover"