diff --git a/awx/ui/client/src/home/home.controller.js b/awx/ui/client/src/home/home.controller.js index 2a0228c124..cef2324fd0 100644 --- a/awx/ui/client/src/home/home.controller.js +++ b/awx/ui/client/src/home/home.controller.js @@ -108,7 +108,7 @@ export default ['$scope','Wait', '$timeout', 'i18n', }; $scope.$on('ws-jobs', function (e, msg) { - if (msg.status === 'successful' || msg.status === 'failed' || msg.status === 'canceled') { + if (msg.status === 'successful' || msg.status === 'failed' || msg.status === 'canceled' || msg.status === 'error') { newJobs.push(msg.unified_job_id); if (!newJobsTimerRunning) { fetchNewJobs();