From 3436cbad0eddcc52591fecd9d9d410ecbecd44cf Mon Sep 17 00:00:00 2001 From: Tim <roadscape@users.noreply.github.com> Date: Thu, 8 Sep 2016 13:15:21 -0400 Subject: [PATCH] revert to non-standard anchor link with reference to #124 --- app/components/cards/Comment.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/cards/Comment.jsx b/app/components/cards/Comment.jsx index 177ce9087..e9fd530e4 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 // Using a hash here is not standard but intentional; see issue #124 for details const {PostReplyEditor, PostEditEditor, showReply, showEdit, hide_body} = this.state const Editor = showReply ? PostReplyEditor : PostEditEditor -- GitLab