PMCORE-3311:Tooltip empty PendignTask
This commit is contained in:
@@ -1,13 +1,21 @@
|
||||
<template>
|
||||
<div v-if="data.length" class="task-cell">
|
||||
<div v-for="(item, index) in data" class="d-flex mb-3">
|
||||
<div
|
||||
v-for="(item, index) in data"
|
||||
v-bind:key = index
|
||||
class="d-flex mb-3">
|
||||
<div
|
||||
v-bind:style="{ color: activeColor(item.CODE_COLOR) }"
|
||||
:id="statusId + index"
|
||||
>
|
||||
<i class="fas fa-square"></i>
|
||||
</div>
|
||||
<b-popover :target="statusId + index" triggers="hover" placement="top">
|
||||
<b-popover
|
||||
v-if="item.DELAYED_TITLE && item.DELAYED_MSG"
|
||||
:target="statusId + index"
|
||||
triggers="hover"
|
||||
placement="top"
|
||||
>
|
||||
<b> {{ item.DELAYED_TITLE }} </b> {{ item.DELAYED_MSG }}
|
||||
</b-popover>
|
||||
<div class="col ellipsis" v-b-popover.hover.top="item.TITLE">
|
||||
|
||||
Reference in New Issue
Block a user