From d7e77064a2f69d33d1b4248be3e6fd519295f154 Mon Sep 17 00:00:00 2001 From: Michael Abashian Date: Mon, 30 Nov 2015 15:22:44 -0500 Subject: [PATCH] When the panel lists were consolidated down the list name was changed to 'all_jobs.' When a job is clicked from the activity stream it should show the job list filtered down by ID. --- awx/ui/client/src/helpers/Jobs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/helpers/Jobs.js b/awx/ui/client/src/helpers/Jobs.js index dac06e03c6..cd3bb677af 100644 --- a/awx/ui/client/src/helpers/Jobs.js +++ b/awx/ui/client/src/helpers/Jobs.js @@ -428,7 +428,7 @@ export default // }, 300); }); - if (base === 'jobs' && list.name === 'completed_jobs') { + if (base === 'jobs' && list.name === 'all_jobs') { if ($routeParams.id__int) { scope[list.iterator + 'SearchField'] = 'id'; scope[list.iterator + 'SearchValue'] = $routeParams.id__int;