Skip to content

Commit

Permalink
Merged in bugfix/shibui-2040 (pull request #519)
Browse files Browse the repository at this point in the history
Fixed issue with deleting users from actions required
  • Loading branch information
rmathis committed Sep 7, 2021
2 parents 6fc8f48 + 9c179ca commit 05aa2bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/admin/container/UserActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import UserManagement from '../../admin/container/UserManagement';
export function UserActions({ users, reloadUsers }) {
return (
<UserManagement users={users} reload={reloadUsers}>
{(u, roles, onChangeUserRole, onDeleteUser) =>
{(u, roles, onChangeUserRole, onChangeGroup, onDeleteUser) =>
<AccessRequest users={u} roles={roles} onChangeUserRole={onChangeUserRole} onDeleteUser={onDeleteUser} />}
</UserManagement>
);
Expand Down

0 comments on commit 05aa2bf

Please sign in to comment.