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
<Select> is not changing value on <option> click (event handler is getting old value). Value can be changed only using arrow keys. Exception occurs only on Firefox. On Chrome 70 and IE 11 works fine.
The text was updated successfully, but these errors were encountered:
mousedown event does not bubble from child elements to parent element in Chrome. This does however, happen in Firefox.
Firefox mousedown event is triggering NativeControl.setRippleCenter, which shouldn't be called when an is selected.
Unanswered Questions:
why does NativeControl.props.setRippleCenter() change the value emitted by onChange event.
I'm thinking it might be a React bug
We're going to review the PR fix and do a patch release when its ready. Thanks for filing this issue!
React: 16.6.0
@material/react-select: 0.7.0
Browser: Firefox 63.0.3 (64 bit)
OS: Ubuntu 18.04
userAgent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0
<Select>
is not changing value on<option>
click (event handler is getting old value). Value can be changed only using arrow keys. Exception occurs only on Firefox. On Chrome 70 and IE 11 works fine.The text was updated successfully, but these errors were encountered: