mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-01 09:39:51 -04:00
make Likes come before Replies under post
This commit is contained in:
parent
bcbf538297
commit
4bffacac66
1 changed files with 1 additions and 1 deletions
|
@ -76,8 +76,8 @@ const PostMenuView = Ember.Component.extend(StringBuffer, {
|
|||
const post = this.get('post');
|
||||
|
||||
buffer.push("<nav class='post-controls'>");
|
||||
this.renderReplies(post, buffer);
|
||||
this.renderLikes(post, buffer);
|
||||
this.renderReplies(post, buffer);
|
||||
this.renderButtons(post, buffer);
|
||||
this.renderAdminPopup(post, buffer);
|
||||
buffer.push("</nav>");
|
||||
|
|
Loading…
Add table
Reference in a new issue