Issues with mouse enter/leave action for text element in nested list element

i have a list inside of a list. the inner list has texts. when i hover a text, i want to set a variables value and when i move off, i want to toggle that variable again. currently these workflows are firing without me moving the mouse at all when simply hovering over the text

Hello @jaredgibb,

The issue is that your workflow on mouseEnter is on the element of the list. And when the tootlip appeared, your mouse is no more on the element of the list (it’s on the tooltip) and so the workflow is no more trigger

You could move your tooltip to be sure that your mouse stays on the element when the tooltip appeared. Or you could wrap the tooltip and element in a same parent and set the workflow mouseEnter on the parent

Let me know if that’s helping you :slight_smile:

2 Likes