UX: Move post links above topic map on OP

This commit is contained in:
Robin Ward 2016-05-20 12:37:42 -04:00
parent 6aef2b0a59
commit c0e4d0f6f2
No known key found for this signature in database
GPG Key ID: 0E091E2B4ED1B83D
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}