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
So, if I set up the filterOptions like this (really dummy test, it just remove all the default filters):
filter: function (options, filter, currentValues) { return options }
It breaks and prompt this error: Uncaught TypeError: Cannot read property 'length' of undefined
Uncaught TypeError: Cannot read property 'length' of undefined
This piece of code:
getFirstFocusableOption: function getFirstFocusableOption(options) { for (var optionIndex = 0; optionIndex < options.length; ++optionIndex) { if (!options[optionIndex].disabled) { return options[optionIndex]; } } },
I've followed the stacktrace and it's always undefined.
Any idea?
The text was updated successfully, but these errors were encountered:
@edravis It has been awhile but I just tried this in my app and it worked fine. Maybe you were not passing in an empty array to the options prop?
Sorry, something went wrong.
Version 1 of react-select is no longer supported.
In the best interest of the community we've decided to spend the time we have available on the latest version.
We apologise for any inconvenience.
Please see:
No branches or pull requests
So, if I set up the filterOptions like this (really dummy test, it just remove all the default filters):
It breaks and prompt this error:
Uncaught TypeError: Cannot read property 'length' of undefined
This piece of code:
I've followed the stacktrace and it's always undefined.
Any idea?
The text was updated successfully, but these errors were encountered: