You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: