You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Suppose there is more than one TypeaheadSelect with selected tags. When a tag is removed from the first Typeahead select while the menu of the other TypeaheadSelect component is open, the event does not trigger to close the menu of the other one.
Screen.Recording.2022-04-07.at.21.16.57.mov
The text was updated successfully, but these errors were encountered:
Hello after 2 years 😄
I recently had a similar issue. In my case the problem was that I was using event.stopPropagation() on the parent element of the dropdown menu.
Since event.stopPropagation() prevents emitting the click event, useOnClickOutside() was not being triggered.
If we are using stopPropagation or similar function in typeahead select, it can be the reason.
The similar issue exists in the lists with dropdown menus. I highly suspect that this is related to event.stopPropagation in the list items there.
Screen.Recording.2022-04-07.at.21.16.57.mov
The text was updated successfully, but these errors were encountered: