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
What you were expecting: If I type quickly 'test' in an AutocompleteArrayInput, only one request to the backend should be made with q=test.
AutocompleteArrayInput
q=test
What happened instead: 4 requests are sent, i.e. one per keystroke.
Steps to reproduce:
Observe the console and see that many requests are sent.
Other information: A good practice for this kind of type-ahead input is too debounce the queries to avoid spamming the backend api.
Environment
The text was updated successfully, but these errors were encountered:
Thanks for the report
Sorry, something went wrong.
Fixed by #6003
so how i put the prop in the autocompleteinput?
No branches or pull requests
What you were expecting:
If I type quickly 'test' in an
AutocompleteArrayInput
, only one request to the backend should be made withq=test
.What happened instead:
4 requests are sent, i.e. one per keystroke.
Steps to reproduce:
Observe the console and see that many requests are sent.
Other information:
A good practice for this kind of type-ahead input is too debounce the queries to avoid spamming the backend api.
Environment
The text was updated successfully, but these errors were encountered: