remove link from username in comment_view_preview

This commit is contained in:
igoradamenko
2019-01-06 21:01:46 +02:00
parent 52578221a9
commit 80b7800b6a
2 changed files with 2 additions and 4 deletions
@@ -6,7 +6,7 @@
padding-bottom: 0;
.comment__username {
color: #0aa;
color: inherit;
}
.comment__title {
+1 -3
View File
@@ -446,9 +446,7 @@ export default class Comment extends Component {
</div>
)}
<div className="comment__info">
<a href={`${o.locator.url}#${COMMENT_NODE_CLASSNAME_PREFIX}${o.id}`} className="comment__username">
{o.user.name}
</a>
<span className="comment__username">{o.user.name}</span>
</div>{' '}
<div
className={b('comment__text', { mix: b('raw-content', {}, { theme: mods.theme }) })}