Merge pull request #781 from coralproject/featured-tag-on-replies

Show featured tag on replies too
This commit is contained in:
Kim Gardner
2017-07-21 09:30:45 -04:00
committed by GitHub
@@ -6,7 +6,7 @@ import {isTagged} from 'plugin-api/beta/client/utils';
export default (props) => (
<span>
{
isTagged(props.comment.tags, 'FEATURED') && props.depth === 0 ? (
isTagged(props.comment.tags, 'FEATURED') ? (
<span className={styles.tag}>
{t('talk-plugin-featured-comments.featured')}
</span>