Skip to content

Commit

Permalink
fix(ui): add offset to smart start hover menu
Browse files Browse the repository at this point in the history
Fixes #3688
  • Loading branch information
robertsLando committed Apr 29, 2024
1 parent 2df5105 commit 9f72cf3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/views/SmartStart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
:position-y="y"
absolute
offset-y
offset-x
>
<v-list dense>
<v-list-item dense>
Expand Down Expand Up @@ -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
}
Expand Down

0 comments on commit 9f72cf3

Please sign in to comment.