update classes to follow talk naming convention

This commit is contained in:
Ryan Yun
2017-09-25 12:33:59 -04:00
parent 6138768588
commit 3f90f72bee
9 changed files with 10 additions and 10 deletions
@@ -7,8 +7,8 @@ import t from 'coral-framework/services/i18n';
import {BASE_PATH} from 'coral-framework/constants/url';
const ModerationLink = (props) => props.isAdmin ? (
<div className={cn(styles.moderationLink, 'moderationLinkContainer')}>
<a className='moderationLink' href={`${BASE_PATH}admin/moderate/${props.assetId}`} target="_blank">
<div className={cn(styles.moderationLink, 'talk-embed-stream-moderation-container')}>
<a className='talk-embed-stream-moderation-link' href={`${BASE_PATH}admin/moderate/${props.assetId}`} target="_blank">
{t('moderate_this_stream')}
</a>
</div>