Order of comments in changeset comments feeds
This commit is contained in:
parent
87422e56f9
commit
676aef5be6
2 changed files with 18 additions and 1 deletions
|
@ -18,7 +18,7 @@ class ChangesetCommentsController < ApplicationController
|
|||
changeset = Changeset.find(id)
|
||||
|
||||
# Return comments for this changeset only
|
||||
@comments = changeset.comments.includes(:author, :changeset).limit(comments_limit)
|
||||
@comments = changeset.comments.includes(:author, :changeset).reverse_order.limit(comments_limit)
|
||||
else
|
||||
# Return comments
|
||||
@comments = ChangesetComment.includes(:author, :changeset).where(:visible => true).order("created_at DESC").limit(comments_limit).preload(:changeset)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue