Hide settings after leaving a group
This commit is contained in:
parent
6f10b5a410
commit
1da56d9e98
1 changed files with 4 additions and 0 deletions
|
@ -467,6 +467,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});
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue