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
The bug can reproduce with Chrome and Edge, works fine in Firefox. Also, anujs(https://github.com/RubyLouvre/anu, another React-like library) and React works fine.
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3192.0 Safari/537.36
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16251
The bug can reproduce with Chrome and Edge, works fine in Firefox. Also,
anujs
(https://github.com/RubyLouvre/anu, another React-like library) and React works fine.User-Agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3192.0 Safari/537.36
User-Agent:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16251
Example: https://lucifier129.github.io/material-ui/build/#/
In Chrome, I have to double-click a
MenuItem
to trigger itsonClick
event withreact-lite
.I found the source of bug: https://github.com/callemall/material-ui/blob/master/src/internal/TouchRipple.js#L210. I replaced the
rippleGroup
to<div />
, the issue still exists.Then I tried to debug
react-lite
. The first click didn't triggerclick
event.So I wrapped
dispatchEvent
withsetTimeout
to wait 65ms, now the click triggered normally. DelayingbatchUpdate
is useless.I think it's maybe any function canceled mouseup event, but there're no function controlled event.
Now I have no clue...
The text was updated successfully, but these errors were encountered: