From 3b4f39742b001d94fac3bee57b1a9edd4dff25fe Mon Sep 17 00:00:00 2001 From: Michael Abashian Date: Mon, 30 Nov 2015 10:44:37 -0500 Subject: [PATCH] The "job" href links in the activity stream don't point to the job details page. This is an update to the jobs href to point to /#/jobs/(job.id). --- awx/ui/client/src/widgets/Stream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/widgets/Stream.js b/awx/ui/client/src/widgets/Stream.js index 5cbd299edf..f05952463b 100644 --- a/awx/ui/client/src/widgets/Stream.js +++ b/awx/ui/client/src/widgets/Stream.js @@ -170,7 +170,7 @@ angular.module('StreamWidget', ['RestServices', 'Utilities', 'StreamListDefiniti url += 'home/' + obj.base + 's/?id=' + obj.id; break; case 'job': - url += 'jobs/?id__int=' + obj.id; + url += 'jobs/' + obj.id + '/'; break; case 'inventory': url += 'inventories/' + obj.id + '/';