From 93c614ae318104d37df29169d38959b1a0679153 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Wed, 22 Jul 2015 16:54:21 -0400 Subject: [PATCH] Default sort by popularity instead of starred --- static/js/directives/ui/repo-list-table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/directives/ui/repo-list-table.js b/static/js/directives/ui/repo-list-table.js index c1d4071c5..b7dfe7677 100644 --- a/static/js/directives/ui/repo-list-table.js +++ b/static/js/directives/ui/repo-list-table.js @@ -20,7 +20,7 @@ angular.module('quay').directive('repoListTable', function () { $scope.maxPopularity = 0; $scope.options = { - 'predicate': 'is_starred', + 'predicate': 'popularity', 'reverse': true };