diff --git a/app/assets/javascripts/discourse/widgets/post.js.es6 b/app/assets/javascripts/discourse/widgets/post.js.es6 index 8e42b79478a..2ffd5fb237d 100644 --- a/app/assets/javascripts/discourse/widgets/post.js.es6 +++ b/app/assets/javascripts/discourse/widgets/post.js.es6 @@ -303,10 +303,10 @@ createWidget('post-body', { const result = [this.attach('post-meta-data', attrs), postContents]; result.push(this.attach('actions-summary', attrs)); + result.push(this.attach('post-links', attrs)); if (attrs.showTopicMap) { result.push(this.attach('topic-map', attrs)); } - result.push(this.attach('post-links', attrs)); return result; }