diff --git a/frontend/src/components/people-list/invite.js b/frontend/src/components/people-list/invite.js index e68a5bbe..05a2ad25 100644 --- a/frontend/src/components/people-list/invite.js +++ b/frontend/src/components/people-list/invite.js @@ -46,7 +46,11 @@ const Invite = React.createClass({ parentIndex: this.props.parentIndex, }; - this.props.addMemember(data); + this.props.addMemember(data, () => { + this.setState({ + selectValue: '' + }); + }); }, render() { @@ -88,8 +92,9 @@ const Invite = React.createClass({
-