1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-17 15:53:28 +00:00

[system admin] added 'waiting tip' for 'delete user/org' (#4506)

This commit is contained in:
llj
2020-03-26 18:11:14 +08:00
committed by GitHub
parent e7009f909f
commit fc330d1e58
2 changed files with 2 additions and 0 deletions

View File

@@ -129,6 +129,7 @@ class Item extends Component {
}
deleteOrg = () => {
toaster.notify(gettext('It may take some time, please wait.'));
this.props.deleteOrg(this.props.item.org_id);
}

View File

@@ -265,6 +265,7 @@ class Item extends Component {
}
deleteUser = () => {
toaster.notify(gettext('It may take some time, please wait.'));
this.props.deleteUser(this.props.item.email);
}