Changed clock icon in repeat posts to simple timestamp

Этот коммит содержится в:
Reed Garmsen
2016-02-01 14:30:16 -08:00
родитель fe39f2400f
Коммит 92816619cc
6 изменённых файлов: 31 добавлений и 24 удалений

Просмотреть файл

@@ -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
};