diff --git a/static/directives/repo-list-table.html b/static/directives/repo-list-table.html index 894f8572f..8b4d266fc 100644 --- a/static/directives/repo-list-table.html +++ b/static/directives/repo-list-table.html @@ -1,10 +1,11 @@
diff --git a/static/js/directives/ui/repo-list-table.js b/static/js/directives/ui/repo-list-table.js index b7dfe7677..c19a22371 100644 --- a/static/js/directives/ui/repo-list-table.js +++ b/static/js/directives/ui/repo-list-table.js @@ -81,8 +81,13 @@ angular.module('quay').directive('repoListTable', function () { $scope.$watch('repositoriesResources', function(resources) { $scope.repositories = []; $scope.maxPopularity = 0; + $scope.isLoading = false; resources.forEach(function(resource) { + if (resource.loading) { + $scope.isLoading = true; + } + (resource.value || []).forEach(function(repository) { var repositoryInfo = $.extend(repository, { 'full_name': repository.namespace + '/' + repository.name, |