1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-25 14:50:29 +00:00

[group manage members] after clicking the 'Add' button in the 'Select group members'(select from dept) dialog, don't close the 'outer' 'group manage members' dialog (#8022)

This commit is contained in:
llj
2025-07-09 18:13:04 +08:00
committed by GitHub
parent 4de64bc55f
commit dde2b129c6

View File

@@ -149,7 +149,6 @@ class DepartmentDetailDialog extends React.Component {
let emails = Object.keys(this.state.newMembersTempObj);
seafileAPI.addGroupMembers(this.props.groupID, emails).then((res) => {
this.toggle();
this.props.toggleManageMembersDialog();
}).catch(error => {
this.onError(error);
});