diff --git a/app/components/cards/Comment.jsx b/app/components/cards/Comment.jsx
index 21e3fb8ba83442e4552a2ef74c606d0277b34c43..177ce9087661d4a082cc552a94b11fc13c327aa9 100644
--- a/app/components/cards/Comment.jsx
+++ b/app/components/cards/Comment.jsx
@@ -217,7 +217,7 @@ class CommentImpl extends React.Component {
             showNegativeComments, ignore, noImage} = this.props
         const {onShowReply, onShowEdit, onDeletePost} = this
         const post = comment.author + '/' + comment.permlink
-        const anchor_link = '#@' + post
+        const anchor_link = '@' + post
         const {PostReplyEditor, PostEditEditor, showReply, showEdit, hide_body} = this.state
         const Editor = showReply ? PostReplyEditor : PostEditEditor