From c0e4d0f6f247455e3e25a7b4dac6aaa19bd8637a Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Fri, 20 May 2016 12:37:42 -0400 Subject: [PATCH] UX: Move post links above topic map on OP --- app/assets/javascripts/discourse/widgets/post.js.es6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/widgets/post.js.es6 b/app/assets/javascripts/discourse/widgets/post.js.es6 index 8e42b7947..2ffd5fb23 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; }