From 9b98f262acf34887362494374b0e47ccd7eae591 Mon Sep 17 00:00:00 2001 From: Ken Hoes Date: Mon, 19 Dec 2016 13:21:12 -0500 Subject: [PATCH] Fixed infinite wait spinner when deleting projects --- awx/ui/client/src/controllers/Projects.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/awx/ui/client/src/controllers/Projects.js b/awx/ui/client/src/controllers/Projects.js index d0c845a058..614d361181 100644 --- a/awx/ui/client/src/controllers/Projects.js +++ b/awx/ui/client/src/controllers/Projects.js @@ -183,6 +183,9 @@ export function ProjectsList($scope, $rootScope, $location, $log, $stateParams, .error(function (data, status) { ProcessErrors($scope, data, status, null, { hdr: i18n._('Error!'), msg: i18n.sprintf(i18n._('Call to %s failed. DELETE returned status: '), url) + status }); + }) + .finally(function() { + Wait('stop'); }); };