From fed00a18ad70d341e7c3011f9978ab5c105da688 Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Sat, 17 Nov 2018 14:27:41 -0500 Subject: [PATCH] show workflow jobs on inventory completed jobs view --- .../features/jobs/routes/inventoryCompletedJobs.route.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/awx/ui/client/features/jobs/routes/inventoryCompletedJobs.route.js b/awx/ui/client/features/jobs/routes/inventoryCompletedJobs.route.js index 8d4de65623..d7d774d1a0 100644 --- a/awx/ui/client/features/jobs/routes/inventoryCompletedJobs.route.js +++ b/awx/ui/client/features/jobs/routes/inventoryCompletedJobs.route.js @@ -50,7 +50,9 @@ export default { const searchParam = _.assign($stateParams.job_search, { or__job__inventory: inventoryId, or__adhoccommand__inventory: inventoryId, - or__inventoryupdate__inventory_source__inventory: inventoryId }); + or__inventoryupdate__inventory_source__inventory: inventoryId, + or__workflowjob__inventory: inventoryId, + }); const searchPath = GetBasePath('unified_jobs');