-
Notifications
You must be signed in to change notification settings - Fork 293
Open
Labels
Description
Is your feature request related to a problem? Please describe.
Search-select fields are not set up with a debounce field, so network requests are fired on every input change. Eg, if I'm searching for the user "Derek", when I type in "D", it sends a request, then another on "De", then "Der", "Dere", and finally "Derek". If the user types quick enough, the only request should be on "Derek"
Describe the solution you'd like
A debounce function would solve this. Someone discussed this in slim-select here: brianvoe/slim-select#541 And there is an example function in the codepen.
Additional context
N/A