Job Detail events scrolling defect fix

On the events view of the job detail page, when the list of hosts if very long, and an api call is made to get more host events, the host edit modal was using the hostname instead of the host id number to make a call to the job events endpoint
This commit is contained in:
Jared Tabor 2014-12-10 15:16:03 -05:00
parent bc78587c60
commit 646bcd407f

View File

@ -1263,7 +1263,7 @@ function JobDetailController ($location, $rootScope, $scope, $compile, $routePar
name = "<deleted host>";
}
scope.hosts.push({
id: name,
id: row.id,
name: name,
ok: row.ok,
changed: row.changed,