From 758aafec11a3d6c97beb405963945d1f2544f074 Mon Sep 17 00:00:00 2001 From: Michael Abashian Date: Tue, 14 Feb 2017 14:55:29 -0500 Subject: [PATCH] Fixed jt/wfjt links in activity stream --- awx/ui/client/src/widgets/Stream.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/awx/ui/client/src/widgets/Stream.js b/awx/ui/client/src/widgets/Stream.js index 1fc1a40520..64315e7953 100644 --- a/awx/ui/client/src/widgets/Stream.js +++ b/awx/ui/client/src/widgets/Stream.js @@ -80,6 +80,12 @@ angular.module('StreamWidget', ['RestServices', 'Utilities', 'StreamListDefiniti break; case 'role': throw {name : 'NotImplementedError', message : 'role object management is not consolidated to a single UI view'}; + case 'job_template': + url += `templates/job_template/${obj.id}`; + break; + case 'workflow_job_template': + url += `templates/workflow_job_template/${obj.id}`; + break; default: url += resource + 's/' + obj.id + '/'; }