summaryrefslogtreecommitdiffstats
path: root/web/react/components/post.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2015-08-02 09:00:13 -0800
committerCorey Hulen <corey@hulen.com>2015-08-02 09:00:13 -0800
commit2aba63df8e091a809a7f23e183ed62aa0873c52e (patch)
treef634ca4739fc3016418ea675f6021e86c751e05e /web/react/components/post.jsx
parent0b6c6b94cbbd9c1b9b79dc2b5d4f299b50711b54 (diff)
parente2d77c28f1226c32457891d6b6814082468548e5 (diff)
downloadchat-2aba63df8e091a809a7f23e183ed62aa0873c52e.tar.gz
chat-2aba63df8e091a809a7f23e183ed62aa0873c52e.tar.bz2
chat-2aba63df8e091a809a7f23e183ed62aa0873c52e.zip
Merge pull request #302 from hmhealey/mm1788
MM-1788 Removed ^replying in preparation for 0.6.0
Diffstat (limited to 'web/react/components/post.jsx')
-rw-r--r--web/react/components/post.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/post.jsx b/web/react/components/post.jsx
index e3586ecde..e72a2d001 100644
--- a/web/react/components/post.jsx
+++ b/web/react/components/post.jsx
@@ -83,7 +83,7 @@ module.exports = React.createClass({
<img className="post-profile-img" src={"/api/v1/users/" + post.user_id + "/image?time=" + timestamp} height="36" width="36" />
</div>
: null }
- <div className={"post__content" + (this.props.isActiveThread ? " active-thread__content" : "")}>
+ <div className="post__content">
<PostHeader ref="header" post={post} sameRoot={this.props.sameRoot} commentCount={commentCount} handleCommentClick={this.handleCommentClick} isLastComment={this.props.isLastComment} />
<PostBody post={post} sameRoot={this.props.sameRoot} parentPost={parentPost} posts={posts} handleCommentClick={this.handleCommentClick} />
<PostInfo ref="info" post={post} sameRoot={this.props.sameRoot} commentCount={commentCount} handleCommentClick={this.handleCommentClick} allowReply="true" />