Get full actions working in the repo changes tab

This commit is contained in:
Joseph Schorr 2015-03-11 17:46:50 -07:00
parent 89e71b75dd
commit a18148b058
9 changed files with 490 additions and 54 deletions

View file

@ -21,6 +21,10 @@ angular.module('quay').directive('resourceView', function () {
}
var resources = $scope.resources || [$scope.resource];
if (!resources.length) {
return 'loading';
}
for (var i = 0; i < resources.length; ++i) {
var current = resources[i];
if (current.loading) {