fix: Add pagination support to user search functionality

This commit is contained in:
1808837298@qq.com
2025-02-27 16:55:02 +08:00
parent 1bcf7a3c39
commit 0f1c4c4ebe

View File

@@ -376,7 +376,7 @@ const UsersTable = () => {
if (searchKeyword === '') {
await loadUsers(activePage, pageSize);
} else {
await searchUsers(searchKeyword, searchGroup);
await searchUsers(activePage, pageSize, searchKeyword, searchGroup);
}
};