mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 19:10:07 -03:30
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:
parent
bc78587c60
commit
646bcd407f
@ -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,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user