Fixing bug with reply author name.

This commit is contained in:
David Jay
2016-11-22 16:16:10 -05:00
parent 0d4a029529
commit dea62d8895
@@ -162,7 +162,7 @@ class CommentStream extends Component {
let reply = this.props.items.comments[replyId];
return <div className="reply" key={replyId}>
<hr aria-hidden={true}/>
<AuthorName author={users[comment.author_id]}/>
<AuthorName author={users[reply.author_id]}/>
<PubDate created_at={reply.created_at}/>
<Content body={reply.body}/>
<div className="replyActionsLeft">