summaryrefslogtreecommitdiffstats
path: root/web/react/components/create_comment.jsx
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-06-15 11:22:53 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-06-15 11:22:53 -0700
commit0cd93cf2da14a4e058eef06a0a0c1770e2fe3ab7 (patch)
tree3f86c6872aa94ee0530f8a6d2b7458fa655c11de /web/react/components/create_comment.jsx
parentb7a821c3410ecd165241e2dbcf2c8376ae402124 (diff)
parent6f10c401a422170d42d9cee8ec01b94808fa338f (diff)
downloadchat-0cd93cf2da14a4e058eef06a0a0c1770e2fe3ab7.tar.gz
chat-0cd93cf2da14a4e058eef06a0a0c1770e2fe3ab7.tar.bz2
chat-0cd93cf2da14a4e058eef06a0a0c1770e2fe3ab7.zip
Merge pull request #1 from mattermost/master
to me
Diffstat (limited to 'web/react/components/create_comment.jsx')
-rw-r--r--web/react/components/create_comment.jsx7
1 files changed, 5 insertions, 2 deletions
diff --git a/web/react/components/create_comment.jsx b/web/react/components/create_comment.jsx
index 3534c7573..9bcbad079 100644
--- a/web/react/components/create_comment.jsx
+++ b/web/react/components/create_comment.jsx
@@ -55,12 +55,15 @@ module.exports = React.createClass({
}.bind(this),
function(err) {
- var state = {}
+ var state = {};
state.server_error = err.message;
- this.setState(state);
+
if (err.message === "Invalid RootId parameter") {
if ($('#post_deleted').length > 0) $('#post_deleted').modal('show');
}
+ else {
+ this.setState(state);
+ }
}.bind(this)
);
},