From c0f3b0268e0ce4cd4018a683af7493e11d7303b2 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Fri, 22 Jun 2018 13:42:00 -0700 Subject: [PATCH] Update jobs list if navigating from the output page. --- awx/ui/client/src/app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/awx/ui/client/src/app.js b/awx/ui/client/src/app.js index 8ed9133251..828bd1fc7f 100644 --- a/awx/ui/client/src/app.js +++ b/awx/ui/client/src/app.js @@ -353,6 +353,10 @@ angular } else { $rootScope.$broadcast("RemoveIndicator"); } + + if(_.contains(trans.from().name, 'output') && trans.to().name === 'jobs'){ + $state.reload(); + } }); if (!Authorization.isUserLoggedIn()) {