fix branches sorting order

This commit is contained in:
Lisa P 2015-10-28 13:21:16 +01:00
parent e80f399e83
commit fbd7305252

View File

@ -16,7 +16,7 @@ BranchesController = Ember.Controller.extend
repos = @get('model')
repos = repos.filter (item, index) ->
item if item.exists_on_github == true && item.default_branch == false
.sortBy('default_branch.last_build.finished_at')
.sortBy('last_build.finished_at')
.reverse()
).property('model')