summaryrefslogtreecommitdiffstats
path: root/web/react/components/post.jsx
diff options
context:
space:
mode:
authornickago <ngonella@calpoly.edu>2015-07-13 08:34:34 -0700
committernickago <ngonella@calpoly.edu>2015-07-13 08:34:34 -0700
commit614992dcb7b4a4cdcedefe3ca813a03b758a97f0 (patch)
tree7cb940e47842d47aa08c68949a10d19d5a67cf58 /web/react/components/post.jsx
parentb63d42c2c6256ab5e904939a83d7e3eb530e101e (diff)
downloadchat-614992dcb7b4a4cdcedefe3ca813a03b758a97f0.tar.gz
chat-614992dcb7b4a4cdcedefe3ca813a03b758a97f0.tar.bz2
chat-614992dcb7b4a4cdcedefe3ca813a03b758a97f0.zip
Added timestamp updates to right side and cleaned code
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 2d25e31e0..04b5ba082 100644
--- a/web/react/components/post.jsx
+++ b/web/react/components/post.jsx
@@ -85,7 +85,7 @@ module.exports = React.createClass({
<div className="post__content">
<PostHeader 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" />
+ <PostInfo post={post} sameRoot={this.props.sameRoot} commentCount={commentCount} handleCommentClick={this.handleCommentClick} allowReply="true" />
</div>
</div>
</div>