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