Browse Source

fix: update searchUsers function to include searchKeyword and searchGroup parameters

CalciumIon 1 year ago
parent
commit
f2c9388139
1 changed files with 1 additions and 1 deletions
  1. 1 1
      web/src/components/UsersTable.js

+ 1 - 1
web/src/components/UsersTable.js

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