From e10167ee5a78d21ddfb45bd0802b33653a289a8f Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Mon, 8 Dec 2014 16:14:59 -0500 Subject: [PATCH] Job Detail -- Events Summary the edit icon for the host events was not receiving the correct host id during the processing of job_event data from the job_event endpoint --- awx/ui/static/js/controllers/JobDetail.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/controllers/JobDetail.js b/awx/ui/static/js/controllers/JobDetail.js index bb777edf0f..afdf93c409 100644 --- a/awx/ui/static/js/controllers/JobDetail.js +++ b/awx/ui/static/js/controllers/JobDetail.js @@ -220,7 +220,7 @@ function JobDetailController ($location, $rootScope, $scope, $compile, $routePar name = ""; } scope.jobData.hostSummaries[name] = { - id: name, + id: event.host, name: name, ok: event.ok, changed: event.changed,