I set a max-height for menu in Autocomplete, this allows me to have many items and a scroll bar.
with Material-ui 0.17.0
Looks like the issue is in handleOnWheel in Menu.js when !isDeltaPositive
https://github.com/callemall/material-ui/blob/master/src/Menu/Menu.js#L472-L475
should be -wheelDelta > scrollHeight
?
Would that comment help https://github.com/callemall/material-ui/issues/5847#issuecomment-269862002?
This fixes the issue:
menuStyle = {{maxHeight:"300px",overflowY:'auto'}}
Thanks!
I hope we can find a better solution. I'm closing it for now.
Most helpful comment
This fixes the issue:
Thanks!