summaryrefslogtreecommitdiffstats
path: root/web/react/components/post.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-07-30 15:21:35 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-07-30 15:21:35 -0400
commite2d77c28f1226c32457891d6b6814082468548e5 (patch)
tree83b2a21e6006a3da1e84f54aad884358bf5c1cff /web/react/components/post.jsx
parent8265e5ed8215dcf0cf4ca3438f5f2e62576656fe (diff)
downloadchat-e2d77c28f1226c32457891d6b6814082468548e5.tar.gz
chat-e2d77c28f1226c32457891d6b6814082468548e5.tar.bz2
chat-e2d77c28f1226c32457891d6b6814082468548e5.zip
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" />