mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 11:00:03 -03:30
Job event viewer
successful status not shows as OK
This commit is contained in:
parent
e1ee2f4fb0
commit
69da1a2f42
@ -103,7 +103,7 @@ angular.module('EventViewerHelper', ['ModalDialog', 'Utilities'])
|
||||
|
||||
function getStatus(data) {
|
||||
return (data.results[0].event === "runner_on_unreachable") ? "unreachable" : (data.results[0].event === "runner_on_skipped") ? 'skipped' : (data.results[0].failed) ? 'failed' :
|
||||
(data.results[0].changed) ? 'changed' : 'successful';
|
||||
(data.results[0].changed) ? 'changed' : 'ok';
|
||||
}
|
||||
|
||||
Wait('start');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user