summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_header.jsx
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2016-02-01 14:30:16 -0800
committerReed Garmsen <rgarmsen2295@gmail.com>2016-02-02 11:54:01 -0800
commit92816619cc584c7c172c4e4fdde17624cf7f913f (patch)
treea28fed455824c0011b4a6303598bb242e75035c2 /web/react/components/post_header.jsx
parentfe39f2400f616e14fbaec67b1d22e80d1583e1f1 (diff)
downloadchat-92816619cc584c7c172c4e4fdde17624cf7f913f.tar.gz
chat-92816619cc584c7c172c4e4fdde17624cf7f913f.tar.bz2
chat-92816619cc584c7c172c4e4fdde17624cf7f913f.zip
Changed clock icon in repeat posts to simple timestamp
Diffstat (limited to 'web/react/components/post_header.jsx')
-rw-r--r--web/react/components/post_header.jsx7
1 files changed, 5 insertions, 2 deletions
diff --git a/web/react/components/post_header.jsx b/web/react/components/post_header.jsx
index f18024343..037b48096 100644
--- a/web/react/components/post_header.jsx
+++ b/web/react/components/post_header.jsx
@@ -52,6 +52,7 @@ export default class PostHeader extends React.Component {
handleCommentClick={this.props.handleCommentClick}
allowReply='true'
isLastComment={this.props.isLastComment}
+ sameUser={this.props.sameUser}
/>
</li>
</ul>
@@ -62,11 +63,13 @@ export default class PostHeader extends React.Component {
PostHeader.defaultProps = {
post: null,
commentCount: 0,
- isLastComment: false
+ isLastComment: false,
+ sameUser: false
};
PostHeader.propTypes = {
post: React.PropTypes.object,
commentCount: React.PropTypes.number,
isLastComment: React.PropTypes.bool,
- handleCommentClick: React.PropTypes.func
+ handleCommentClick: React.PropTypes.func,
+ sameUser: React.PropTypes.bool
};