mirror of
https://github.com/strapi/strapi.git
synced 2026-05-03 16:22:30 +00:00
9d5a027191
* fix(review-workflows): fetch all users in assignee dropdown The AssigneeSelect component passed no pagination params to useAdminUsers, which defaults to pageSize 10. Users with more than 10 admin accounts could not see or select all assignees. Pass pageSize: 100 so the dropdown lists all available users. Fixes #25945 * fix(review-workflows): incremental loading + preserve current assignee Replaces the fixed pageSize:100 fetch with the same incremental Combobox pattern used by the admin-users filter (Filters.tsx): grow pageSize on onLoadMore, debounce server-side search via _q, and reset both on close. Also keeps the currently assigned user in the option list when they fall outside the loaded page or active search, so the Combobox never loses its value. * fix(review-workflows): improve assignee dropdown pagination search --------- Co-authored-by: Bassel Kanso <basselkanso82@gmail.com>