mirror of
https://github.com/ansible/awx.git
synced 2026-03-06 11:11:07 -03:30
Host Events - exclude changed events from ok filter #1132
This commit is contained in:
@@ -77,8 +77,8 @@
|
||||
if (filter == 'ok'){
|
||||
return JobDetailService.getRelatedJobEvents($stateParams.id, {
|
||||
host_name: $stateParams.hostName,
|
||||
event: 'runner_on_ok'
|
||||
// add param changed: false if 'ok' shouldn't display changed hosts
|
||||
event: 'runner_on_ok',
|
||||
changed: false
|
||||
})
|
||||
.success(function(res){
|
||||
$scope.results = res.results;
|
||||
|
||||
Reference in New Issue
Block a user