mirror of
https://github.com/ansible/awx.git
synced 2026-05-14 12:57:40 -02: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:
@@ -457,7 +457,8 @@ angular.module('EventViewerHelper', ['ModalDialog', 'Utilities', 'EventsViewerFo
|
|||||||
// to results.
|
// to results.
|
||||||
for (key in obj) {
|
for (key in obj) {
|
||||||
h = '';
|
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]) {
|
if (!EventsViewerForm.fields[key]) {
|
||||||
h = parseItem(obj[key], key, key);
|
h = parseItem(obj[key], key, key);
|
||||||
if (h) {
|
if (h) {
|
||||||
|
|||||||
Reference in New Issue
Block a user