mirror of
https://github.com/ansible/awx.git
synced 2026-01-20 06:01:25 -03:30
Job events viewer
Made sure stdout, stderr and traceback don't end up on Results tab. Each of these already has a dedicated tab.
This commit is contained in:
parent
5b6d8e5c98
commit
6fb89530cc
@ -457,7 +457,8 @@ angular.module('EventViewerHelper', ['ModalDialog', 'Utilities', 'EventsViewerFo
|
||||
// to results.
|
||||
for (key in obj) {
|
||||
h = '';
|
||||
if (key !== 'host_id' && key !== 'parent' && key !== 'event' && key !== 'src' && key !== 'md5sum') {
|
||||
if (key !== 'host_id' && key !== 'parent' && key !== 'event' && key !== 'src' && key !== 'md5sum' &&
|
||||
key !== 'stdout' && key !== 'traceback' && key !== 'stderr') {
|
||||
if (!EventsViewerForm.fields[key]) {
|
||||
h = parseItem(obj[key], key, key);
|
||||
if (h) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user