-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Closed
Labels
kind/enhancementCategorizes a PR related to an enhancementCategorizes a PR related to an enhancementrelease/26.1.0
Description
Description
The RealmSelector has an unatural high debounce time of 1s. The slowdown in the search is very noticable when upgrading from Keyclaok 24/25. We highly rely on the search since we deal with a lot of different realms, so that slows our administrating efforts down.
I think a debounce time in the range of 250ms - 500ms would be just fine here.
keycloak/js/apps/admin-ui/src/components/realm-selector/RealmSelector.tsx
Lines 111 to 117 in 044807f
const debounceFn = useCallback( | |
debounce((value: string) => { | |
setFirst(0); | |
setSearch(value); | |
}, 1000), | |
[], | |
); |
Discussion
No response
Motivation
No response
Details
No response
Metadata
Metadata
Assignees
Labels
kind/enhancementCategorizes a PR related to an enhancementCategorizes a PR related to an enhancementrelease/26.1.0