1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-09 19:01:42 +00:00

update msg when admin delete user (#5648)

use `Deleted user xxx`
This commit is contained in:
lian
2023-09-19 14:42:15 +08:00
committed by GitHub
parent 78d583f615
commit 230eaaa8f0
8 changed files with 23 additions and 15 deletions

View File

@@ -52,7 +52,8 @@ class UserItem extends React.Component {
toggleDelete = () => {
const email = this.props.user.email;
this.props.toggleDelete(email);
const username = this.props.user.name;
this.props.toggleDelete(email, username);
};
toggleResetPW = () => {