diff --git a/web/app/src/App.vue b/web/app/src/App.vue index 1a63c8721..9908e1c86 100644 --- a/web/app/src/App.vue +++ b/web/app/src/App.vue @@ -219,10 +219,8 @@ const showTooltip = (result, event, action = 'hover') => { tooltipIsPersistent.value = true } } else if (action === 'hover') { - // Only update tooltip on hover if not in persistent mode - if (!tooltipIsPersistent.value) { - tooltip.value = { result, event } - } + if (tooltipIsPersistent.value) return + tooltip.value = result ? { result, event } : {} } } diff --git a/web/app/src/components/EndpointCard.vue b/web/app/src/components/EndpointCard.vue index 62b91e2db..88a530f32 100644 --- a/web/app/src/components/EndpointCard.vue +++ b/web/app/src/components/EndpointCard.vue @@ -33,22 +33,22 @@

{{ formattedResponseTime }}

-
+
@@ -62,7 +62,7 @@