closes #9407
[arvados.git] / apps / workbench / app / assets / javascripts / pipeline_instances.js
index 8bb25c13c080138641e6e8ed1a22124a585c44ae..1617a929928689def96afdba4f3c5f8e3aa48767 100644 (file)
@@ -108,7 +108,7 @@ $(document).on('arv-log-event', '.arv-log-event-handler-append-logs', function(e
     }
     var wasatbottom = ($(this).scrollTop() + $(this).height() >= this.scrollHeight);
 
-    if (eventData.event_type == "stderr" || eventData.event_type == "stdout") {
+    if (eventData.properties != null && eventData.properties.text != null) {
         if( eventData.prepend ) {
             $(this).prepend(eventData.properties.text);
         } else {