Merge pull request #3275 from kleesc/fix-tag-ui-function-name

Fix tag ui function name
This commit is contained in:
Kenny Lee Sin Cheong 2018-10-30 14:07:55 -04:00 committed by GitHub
commit 436e8cb760
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 4 deletions

View file

@ -39,7 +39,7 @@ angular.module('quay').directive('tagOperationsDialog', function () {
$.extend(tags, newTags);
if (resp.has_additional) {
loadPaginatedRepositoryTags(page + 1, tags, added, removed);
reloadTags(page + 1, tags, added, removed);
} else {
$scope.repositoryTags = tags;
$scope.imageLoader.reset();

View file

@ -31,7 +31,8 @@
'imageLoader': imageLoader,
'builds': null,
'historyFilter': '',
'repositoryTags': null
'repositoryTags': null,
'tagsLoading': true
};
$scope.repositoryTags = {};
@ -77,7 +78,9 @@
if (resp.has_additional) {
loadPaginatedRepositoryTags(page + 1);
}
} else {
$scope.viewScope.tagsLoading = false;
}
});
};