We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When customising MenuList max-height and overflow-y are lost, which causes the pagination/lazy loading to continuously load.
MenuList
max-height
overflow-y
This is even when using wrapMenuList.
wrapMenuList
Max height and overflow-y should be set, or documentation should be updated highlighting this.
https://codesandbox.io/s/simple-example-xwdbr?file=/src/App.jsx
See sandbox.
The customised MenuList I'm using comes from Material-UI.
This is easily solved by adding:
style = {{maxHeight: '300px', overflowY: 'auto'}}
which the wrapMenuList function can probably provide.
If you like I can create a PR for this.
The text was updated successfully, but these errors were encountered:
Thank you. I will update documentation a little later.
Sorry, something went wrong.
No branches or pull requests
Are you submitting a bug report or a feature request?
What is the current behavior?
When customising
MenuList
max-height
andoverflow-y
are lost, which causes the pagination/lazy loading to continuously load.This is even when using
wrapMenuList
.What is the expected behavior?
Max height and overflow-y should be set, or documentation should be updated highlighting this.
Sandbox Link
https://codesandbox.io/s/simple-example-xwdbr?file=/src/App.jsx
What's your environment?
See sandbox.
The customised MenuList I'm using comes from Material-UI.
Other information
This is easily solved by adding:
style = {{maxHeight: '300px', overflowY: 'auto'}}
which the
wrapMenuList
function can probably provide.If you like I can create a PR for this.
The text was updated successfully, but these errors were encountered: