|
@@ -20,6 +20,7 @@ class InviteUserControl extends React.Component {
|
|
|
|
|
|
|
|
this.toggleUserInviteModal = this.toggleUserInviteModal.bind(this);
|
|
this.toggleUserInviteModal = this.toggleUserInviteModal.bind(this);
|
|
|
this.showConfirmationPasswordModal = this.showConfirmationPasswordModal.bind(this);
|
|
this.showConfirmationPasswordModal = this.showConfirmationPasswordModal.bind(this);
|
|
|
|
|
+ this.closeConfirmationPasswordModal = this.closeConfirmationPasswordModal.bind(this);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -34,6 +35,10 @@ class InviteUserControl extends React.Component {
|
|
|
this.setState({ isConfirmationPassWordModalShown: true });
|
|
this.setState({ isConfirmationPassWordModalShown: true });
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ closeConfirmationPasswordModal() {
|
|
|
|
|
+ this.setState({ isConfirmationPassWordModalShown: false });
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
render() {
|
|
render() {
|
|
|
const { t } = this.props;
|
|
const { t } = this.props;
|
|
|
|
|
|
|
@@ -50,6 +55,7 @@ class InviteUserControl extends React.Component {
|
|
|
<ConfirmationPasswordModal
|
|
<ConfirmationPasswordModal
|
|
|
show={this.state.isConfirmationPassWordModalShown}
|
|
show={this.state.isConfirmationPassWordModalShown}
|
|
|
invitedEmailList={this.state.invitedEmailList}
|
|
invitedEmailList={this.state.invitedEmailList}
|
|
|
|
|
+ closeConfirmationPasswordModal={this.closeConfirmationPasswordModal}
|
|
|
/>
|
|
/>
|
|
|
</Fragment>
|
|
</Fragment>
|
|
|
);
|
|
);
|