Commit fe9a3025 by 1808837298@qq.com

fix: Add pagination support to user search functionality

parent bf9f5e59
...@@ -376,7 +376,7 @@ const UsersTable = () => { ...@@ -376,7 +376,7 @@ const UsersTable = () => {
if (searchKeyword === '') { if (searchKeyword === '') {
await loadUsers(activePage, pageSize); await loadUsers(activePage, pageSize);
} else { } else {
await searchUsers(searchKeyword, searchGroup); await searchUsers(activePage, pageSize, searchKeyword, searchGroup);
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment