no standard out download for system jobs

This commit is contained in:
John Mitchell 2015-08-04 11:49:40 -04:00
parent 071b699ca8
commit b51f8beefb

View File

@ -96,10 +96,11 @@ export default
if (data.result_stdout) {
$('#logview-tabs li:eq(1)').show();
var showStandardOut = (data.type !== "system_job") ? true : false;
AddPreFormattedText({
id: 'stdout-form-container',
val: data.result_stdout,
standardOut: true,
standardOut: showStandardOut,
jobUrl: data.url
});
}