Commit 333f7372c505583ddafa9f22bd93205f7ad3dbc7

Authored by Vanja Radovanović
1 parent 56046130

fix: grouping by date desc doesn't sort it too

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/views/commits/_commits.html.haml
1   -- @commits.group_by { |c| c.committed_date.to_date }.each do |day, commits|
  1 +- @commits.group_by { |c| c.committed_date.to_date }.sort.reverse.each do |day, commits|
2 2 %div.ui-box
3 3 %h5.small
4 4 %i.icon-calendar
... ...