Hide settings after leaving a group

pull/21833/head
Luke Barnard 2018-04-10 11:49:35 +01:00
parent 42141f7da7
commit 0681df71b0
1 changed files with 4 additions and 0 deletions

View File

@ -466,6 +466,10 @@ export default React.createClass({
_onGroupMyMembership: function(group) {
if (group.groupId !== this.props.groupId) return;
if (group.myMembership === 'leave') {
// Leave settings - the user might have clicked the "Leave" button
this._onCancelClick();
}
this.setState({membershipBusy: false});
},