Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Comments: add quick actions to the comments list view #18657

Merged
merged 12 commits into from
Oct 12, 2017
Prev Previous commit
Next Next commit
Comment: rolls back the approve icon to circle for approved comments …
…and checkmark to pending
  • Loading branch information
Rodrigo Iloro committed Oct 11, 2017
commit c08b7b4f11cebd38ce7fa5194c243b8d031617c5
2 changes: 1 addition & 1 deletion client/blocks/comment-detail/comment-detail-actions.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const CommentDetailActions = ( {
} ) }
onClick={ toggleApprove }
>
<Gridicon icon="checkmark-circle" />
<Gridicon icon={ isApproved ? 'checkmark-circle' : 'checkmark' } />
{ compact || (
<span>{ isApproved ? translate( 'Approved' ) : translate( 'Approve' ) }</span>
) }
Expand Down