Skip to content
New issue

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

Multiselect filter in inline mode is laggy when items are clicked fast #1357

Open
viktoraronfarkas opened this issue Nov 7, 2024 · 1 comment
Labels
bug Something isn't working itemfilter

Comments

@viktoraronfarkas
Copy link
Collaborator

Screen.Recording.2024-11-07.at.14.42.24.mov
@viktoraronfarkas viktoraronfarkas added bug Something isn't working itemfilter labels Nov 7, 2024
@silvester-pari
Copy link
Collaborator

There is a debounce implemented in order to improve performance:

/**
* Debounced version of the toggleItem method to improve performance by limiting the rate at which the method is called.
*
* @function debouncedInputHandler
* @private
*/
debouncedInputHandler = _debounce(this.#toggleItem, 500, {
leading: true,
});

Not sure if this is a bug? We could consider changing the debounce or removing it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working itemfilter
Projects
None yet
Development

No branches or pull requests

2 participants