From 9f72cf3625b2d0078e5d718fc8c9c736a2ca1b1c Mon Sep 17 00:00:00 2001 From: Daniel Lando Date: Mon, 29 Apr 2024 11:19:41 +0200 Subject: [PATCH] fix(ui): add offset to smart start hover menu Fixes #3688 --- src/views/SmartStart.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/views/SmartStart.vue b/src/views/SmartStart.vue index 396b71d29d9..fc3d10d44fe 100644 --- a/src/views/SmartStart.vue +++ b/src/views/SmartStart.vue @@ -22,6 +22,7 @@ :position-y="y" absolute offset-y + offset-x > @@ -391,8 +392,8 @@ export default { onRowFocus(event, { item }) { if (item.nodeId) { // get mouse position - this.x = event.clientX - this.y = event.clientY + this.x = event.clientX + 10 + this.y = event.clientY + 10 this.showInfoTooltip = true }