Merge pull request #1649 from coreos-inc/fix-resource-loading
Fix AsResource method loading
This commit is contained in:
commit
47b3c60b80
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ angular.module('quay').factory('ApiService', ['Restangular', '$q', 'UtilService'
|
||||||
'hasError': false
|
'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.value = processor(resp);
|
||||||
result.loading = false;
|
result.loading = false;
|
||||||
}, function(resp) {
|
}, function(resp) {
|
||||||
|
|
Reference in a new issue