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).

This commit is contained in:
Michael Abashian 2015-11-30 10:44:37 -05:00
parent bf31033701
commit 3b4f39742b

View File

@ -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 + '/';