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:
Chris Houseknecht 2014-07-29 16:57:36 -04:00
parent 5b6d8e5c98
commit 6fb89530cc

View File

@ -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) {