vote styling issue

This commit is contained in:
Dessalines 2019-04-24 18:03:21 -07:00
parent 5e0653ac31
commit f02c2ffac8
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
<svg class="icon upvote"><use xlinkHref="#icon-arrow-up"></use></svg>
</div>
<div>{node.comment.score}</div>
<div className={`pointer ${node.comment.my_vote == -1 && 'text-danger'}`} onClick={linkEvent(node, this.handleCommentDisLike)}>
<div className={`pointer ${node.comment.my_vote == -1 ? 'text-danger' : 'text-muted'}`} onClick={linkEvent(node, this.handleCommentDisLike)}>
<svg class="icon downvote"><use xlinkHref="#icon-arrow-down"></use></svg>
</div>
</div>

View file

@ -62,7 +62,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
<svg class="icon upvote"><use xlinkHref="#icon-arrow-up"></use></svg>
</div>
<div>{post.score}</div>
<div className={`pointer ${post.my_vote == -1 && 'text-danger'}`} onClick={linkEvent(this, this.handlePostDisLike)}>
<div className={`pointer ${post.my_vote == -1 ? 'text-danger' : 'text-muted'}`} onClick={linkEvent(this, this.handlePostDisLike)}>
<svg class="icon downvote"><use xlinkHref="#icon-arrow-down"></use></svg>
</div>
</div>