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
This is happening when the press is longer the debounce_blur.
The input losses focus which triggers detach. Since the item is pressed the click event does not invoke apply_selection. The apply selection does not regain focus back to the input field so detach considers it as if the input just lost focus and clears everything. When the click is finally invoking apply_selection the item is already detached and the selection is ignored.
This can be possibly be solved by using on-mousedown instead of ng-click but it needs to be tested on touch devices and there might be a usability issue as well.
Haki.
The text was updated successfully, but these errors were encountered:
This is happening when the press is longer the
debounce_blur
.The input losses focus which triggers detach. Since the item is pressed the click event does not invoke
apply_selection
. The apply selection does not regain focus back to the input field so detach considers it as if the input just lost focus and clears everything. When the click is finally invokingapply_selection
the item is already detached and the selection is ignored.This can be possibly be solved by using
on-mousedown
instead ofng-click
but it needs to be tested on touch devices and there might be a usability issue as well.Haki.
The text was updated successfully, but these errors were encountered: