1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

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.

This commit is contained in:
Michael Abashian 2015-11-30 15:22:44 -05:00
parent 863a31b6fb
commit d7e77064a2

View File

@ -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;