Replacing moderation comment and history hashes

This commit is contained in:
Belen Curcio
2017-06-29 13:30:12 -03:00
parent bad869bdfe
commit c3ee442775
2 changed files with 2 additions and 2 deletions
@@ -168,7 +168,7 @@ class Comment extends React.Component {
{' '}
<a
className={styles.external}
href={`${comment.asset.url}#${comment.id}`}
href={`${comment.asset.url}?commentId=${comment.id}`}
target="_blank"
>
<Icon name="open_in_new" /> {t('comment.view_context')}
+1 -1
View File
@@ -29,7 +29,7 @@ const Comment = (props) => {
<div className={styles.sidebar}>
<ul>
<li>
<a onClick={props.link(`${props.asset.url}#${props.comment.id}`)}>
<a onClick={props.link(`${props.asset.url}?commentId=${props.comment.id}`)}>
<Icon name="open_in_new" />{t('view_conversation')}
</a>
</li>