Permissions to moderate comments

This commit is contained in:
Belen Curcio
2017-09-07 11:27:12 -03:00
parent a31a63e1c8
commit 32d9dc6646
11 changed files with 51 additions and 45 deletions
@@ -6,9 +6,9 @@ import cn from 'classnames';
export default ({rejectComment}) => (
<button
className={cn(styles.button, 'talk-plugin-reject-comment-action')}
className={cn(styles.button, 'talk-plugin-moderation-actions-reject')}
onClick={rejectComment}>
<Icon name="clear" />
{t('talk-plugin-reject-comment.reject_comment')}
<Icon name="clear" className={styles.icon} />
{t('talk-plugin-moderation-actions.reject_comment')}
</button>
);