diff --git a/Changelog.md b/Changelog.md index 904149582..ec3c22dd2 100644 --- a/Changelog.md +++ b/Changelog.md @@ -32,6 +32,7 @@ * Add a white background to images shown in the lightbox [#4475](https://github.com/diaspora/diaspora/issues/4475) * Refactor getting_started page, test if facebook is available, fix [#4520](https://github.com/diaspora/diaspora/issues/4520) * Avoid publishing empty posts [#4542](https://github.com/diaspora/diaspora/pull/4542) +* Force comments sort order in mobile spv [#4578](https://github.com/diaspora/diaspora/pull/4578) ## Features * Add oEmbed content to the mobile view [#4343](https://github.com/diaspora/diaspora/pull/4353) diff --git a/app/views/shared/_stream_element.mobile.haml b/app/views/shared/_stream_element.mobile.haml index ff833468d..18c5bf68e 100644 --- a/app/views/shared/_stream_element.mobile.haml +++ b/app/views/shared/_stream_element.mobile.haml @@ -43,7 +43,7 @@ = post.likes.size %ul.comments - = render :partial => 'comments/comment', :collection => post.comments, :locals => {:post => post} + = render :partial => 'comments/comment', :collection => post.comments.order('created_at ASC') %li.comment.add_comment_bottom_link_container - if user_signed_in?