diff --git a/app/assets/javascripts/discourse/widgets/post.js.es6 b/app/assets/javascripts/discourse/widgets/post.js.es6 index 7396c4addde..b82b2b9750c 100644 --- a/app/assets/javascripts/discourse/widgets/post.js.es6 +++ b/app/assets/javascripts/discourse/widgets/post.js.es6 @@ -315,7 +315,7 @@ createWidget('post-article', { }, html(attrs, state) { - const rows = [h('a.tabLoc')]; + const rows = [h('a.tabLoc', { attributes: { href: ''} })]; if (state.repliesAbove.length) { const replies = state.repliesAbove.map(p => this.attach('embedded-post', p, { state: { above: true } })); rows.push(h('div.row', h('section.embedded-posts.top.topic-body.offset2', replies)));