summaryrefslogtreecommitdiffstats
path: root/web/react/components/edit_channel_modal.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2015-07-24 11:40:42 -0400
committerJoram Wilander <jwawilander@gmail.com>2015-07-24 11:40:42 -0400
commit4f9c40e60b31936977da357214bf1b9fd99a68d7 (patch)
treebf79e07b3eed37b8ab204f9258db5c7c4ee8a32a /web/react/components/edit_channel_modal.jsx
parentb813234f4cc38e72bb94556d3a4acdcde5071468 (diff)
parentdbbe40e893419d78e23b0d73c8bd6a30478cde2c (diff)
downloadchat-4f9c40e60b31936977da357214bf1b9fd99a68d7.tar.gz
chat-4f9c40e60b31936977da357214bf1b9fd99a68d7.tar.bz2
chat-4f9c40e60b31936977da357214bf1b9fd99a68d7.zip
Merge pull request #226 from nickago/MM-1546
MM-1546 Clear error messages on modal close and channel switch
Diffstat (limited to 'web/react/components/edit_channel_modal.jsx')
-rw-r--r--web/react/components/edit_channel_modal.jsx7
1 files changed, 7 insertions, 0 deletions
diff --git a/web/react/components/edit_channel_modal.jsx b/web/react/components/edit_channel_modal.jsx
index d055feacd..a35a531b5 100644
--- a/web/react/components/edit_channel_modal.jsx
+++ b/web/react/components/edit_channel_modal.jsx
@@ -30,12 +30,19 @@ module.exports = React.createClass({
handleUserInput: function(e) {
this.setState({ description: e.target.value });
},
+ handleClose: function() {
+ this.setState({description: "", server_error: ""});
+ },
componentDidMount: function() {
var self = this;
$(this.refs.modal.getDOMNode()).on('show.bs.modal', function(e) {
var button = e.relatedTarget;
self.setState({ description: $(button).attr('data-desc'), title: $(button).attr('data-title'), channel_id: $(button).attr('data-channelid'), server_error: "" });
});
+ $(this.refs.modal.getDOMNode()).on('hidden.bs.modal', this.handleClose)
+ },
+ componentWillUnmount: function() {
+ $(this.refs.modal.getDOMNode()).off('hidden.bs.modal', this.handleClose)
},
getInitialState: function() {
return { description: "", title: "", channel_id: "" };