From de1073aacb0184fb16a6e13223983715af1fae92 Mon Sep 17 00:00:00 2001 From: Luke Barnard Date: Tue, 10 Apr 2018 13:28:42 +0100 Subject: [PATCH] Factor out `_closeSettings` for cleanliness --- src/components/structures/GroupView.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/structures/GroupView.js b/src/components/structures/GroupView.js index e2b93992e3..e725483d29 100644 --- a/src/components/structures/GroupView.js +++ b/src/components/structures/GroupView.js @@ -468,7 +468,7 @@ export default React.createClass({ if (group.myMembership === 'leave') { // Leave settings - the user might have clicked the "Leave" button - this._onCancelClick(); + this._closeSettings(); } this.setState({membershipBusy: false}); }, @@ -566,6 +566,10 @@ export default React.createClass({ }, _onCancelClick: function() { + this._closeSettings(); + }, + + _closeSettings() { this.setState({ editing: false, profileForm: null,