From 2d62d9b6e7588a88680e4826ff40ff8d6020cd9f Mon Sep 17 00:00:00 2001 From: Roly Gutierrez Date: Fri, 8 Jul 2022 16:37:14 -0400 Subject: [PATCH] PMCORE-3832 Custom Case Counters does not provide the correct number nor information PMCORE_3.7.4 --- resources/assets/js/components/utils/CustomTooltip.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/resources/assets/js/components/utils/CustomTooltip.vue b/resources/assets/js/components/utils/CustomTooltip.vue index af58b271b..111ed8cb0 100644 --- a/resources/assets/js/components/utils/CustomTooltip.vue +++ b/resources/assets/js/components/utils/CustomTooltip.vue @@ -12,8 +12,10 @@ v-if="showTooltip" > {{ labelTooltip }} -

- {{ labelDescription }} +

+ {{ labelName }} + : + {{ labelDescription }}

@@ -30,6 +32,7 @@ export default { data() { return { labelTooltip: "", + labelName: "", labelDescription: "", hovering: "", show: false, @@ -58,6 +61,7 @@ export default { */ unhoverHandler() { this.labelTooltip = ""; + this.labelName = ""; this.labelDescription = ""; this.showTooltip = false; this.isLoading = false; @@ -81,6 +85,7 @@ export default { that.showTooltip = true; that.isLoading = false; that.labelTooltip = response.data.label; + that.labelName = response.data.name; that.labelDescription = response.data.description; }); }