Merge pull request #1649 from coreos-inc/fix-resource-loading

Fix AsResource method loading
This commit is contained in:
josephschorr 2016-07-26 11:33:10 -07:00 committed by GitHub
commit 47b3c60b80

View file

@ -21,7 +21,7 @@ angular.module('quay').factory('ApiService', ['Restangular', '$q', 'UtilService'
'hasError': false
};
getMethod(opt_parameters, options, opt_background).then(function(resp) {
getMethod(options, opt_parameters, opt_background).then(function(resp) {
result.value = processor(resp);
result.loading = false;
}, function(resp) {