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

fix warnings (#3201)

This commit is contained in:
Michael An
2019-04-08 13:51:34 +08:00
committed by Daniel Pan
parent 314ed1fc65
commit 5f350de460
5 changed files with 39 additions and 38 deletions

View File

@@ -26,7 +26,7 @@ class AddOrgAdminDialog extends React.Component {
addOrgAdmin = () => {
if (this.state.selectedOption) {
let userEmail = this.state.selectedOption.email;
this.props.addOrgAdmin(userEmail)
this.props.addOrgAdmin(userEmail);
}
}