Input error on Async.Select with loadOptions
See original GitHub issueinput value is assigned like ‘[object promise]’ This is fixed by
In 'Async.js
return thenPromise(this.props.loadOptions(input, responseHandler), responseHandler);
to
thenPromise(this.props.loadOptions(input, responseHandler), responseHandler); return input;
Thanks. best regards.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:5
- Comments:5 (1 by maintainers)
Top Results From Across the Web
React-Select Async loadOptions is not loading options properly
Here is my front end code for react-async select component. I do use debounce in my getOptions function to reduce number of backend...
Read more >React-Select Async loadOptions is not loading options properly
React Async Select loadoption sometimes fail to loads the option. This is a very strange phenomenon after couple of set of queries react ......
Read more >Async - React Select
A flexible and beautiful Select Input control for ReactJS with ... Async. Use the Async component to load options from a remote source...
Read more >loadOptions JavaScript and Node.js code examples - Tabnine
Best JavaScript code snippets using loadOptions(Showing top 15 results out of 315) · src/components/react-select-async-single. · mocha-parallel. · src/react-select ...
Read more >@commercetools-uikit/async-select-field - npm
A controlled input component with validation states and a label getting a selection from an asynchronously loaded list from the user.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I believe I have a fix for this, with passing tests. Shall I submit a PR?
Fixed by #992