summaryrefslogtreecommitdiffstats
path: root/web/react/components
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-06-19 08:06:25 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-06-19 08:06:25 -0700
commitc1740ffa2fcfcf663d8e847cfe03187fb600b6c1 (patch)
tree1077544c0d976e274bdb5852fdf0ed548d6bd493 /web/react/components
parent4f321383b33ab805f22e7172a54925b1cd353fcb (diff)
parent8dab13c7ded5ca04e06b68146dbd8c34fb997763 (diff)
downloadchat-c1740ffa2fcfcf663d8e847cfe03187fb600b6c1.tar.gz
chat-c1740ffa2fcfcf663d8e847cfe03187fb600b6c1.tar.bz2
chat-c1740ffa2fcfcf663d8e847cfe03187fb600b6c1.zip
Merge pull request #14 from mattermost/master
to me
Diffstat (limited to 'web/react/components')
-rw-r--r--web/react/components/create_post.jsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/web/react/components/create_post.jsx b/web/react/components/create_post.jsx
index 191be9bf8..a534e495d 100644
--- a/web/react/components/create_post.jsx
+++ b/web/react/components/create_post.jsx
@@ -31,9 +31,7 @@ module.exports = React.createClass({
post.message = this.state.messageText;
- var repRegex = new RegExp("<br>", "g");
- if (post.message.replace(repRegex, " ").trim().length === 0
- && this.state.previews.length === 0) {
+ if (post.message.trim().length === 0 && this.state.previews.length === 0) {
return;
}