Make sure the applications array is defined so that a new app can be created even before the existing list has loaded
This commit is contained in:
parent
8eacbfbce4
commit
c9a33c60b2
1 changed files with 2 additions and 1 deletions
|
@ -2534,6 +2534,7 @@ quayApp.directive('applicationManager', function () {
|
||||||
},
|
},
|
||||||
controller: function($scope, $element, ApiService) {
|
controller: function($scope, $element, ApiService) {
|
||||||
$scope.loading = false;
|
$scope.loading = false;
|
||||||
|
$scope.applications = [];
|
||||||
|
|
||||||
$scope.createApplication = function(appName) {
|
$scope.createApplication = function(appName) {
|
||||||
if (!appName) { return; }
|
if (!appName) { return; }
|
||||||
|
@ -2574,7 +2575,7 @@ quayApp.directive('applicationManager', function () {
|
||||||
|
|
||||||
ApiService.getOrganizationApplications(null, params).then(function(resp) {
|
ApiService.getOrganizationApplications(null, params).then(function(resp) {
|
||||||
$scope.loading = false;
|
$scope.loading = false;
|
||||||
$scope.applications = resp['applications'];
|
$scope.applications = resp['applications'] || [];
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Reference in a new issue