1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 23:51:09 +03:00

Fixed infinite wait spinner when deleting projects

This commit is contained in:
Ken Hoes 2016-12-19 13:21:12 -05:00
parent 2f98716c0b
commit 9b98f262ac

View File

@ -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');
});
};