-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Closed
Description
This code:
https://github.com/JedWatson/react-select/blob/master/src/Async.js#L151
if (ignoreAccents) {
inputValue = stripDiacritics(inputValue);
}
if (ignoreCase) {
inputValue = inputValue.toLowerCase();
}
if (onInputChange) {
onInputChange(inputValue);
}
return this.loadOptions(inputValue);
should be
if (ignoreAccents) {
inputValue = stripDiacritics(inputValue);
}
if (ignoreCase) {
inputValue = inputValue.toLowerCase();
}
if (onInputChange) {
**inputValue** = onInputChange(inputValue);
}
return this.loadOptions(inputValue);
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels