11450: workflows index page
[arvados.git] / apps / workbench / app / helpers / provenance_helper.rb
index e8850d5b47e6e41d10330a58b32baac52219b800..a4723a3ec16848d4eb2cd46dab2ea61d783a2bef 100644 (file)
@@ -133,7 +133,10 @@ module ProvenanceHelper
         gr += edge(uuid, job[:output], {label: "output" })
       end
 
-      gr += edge(uuid, job[:log], {label: "log"}) if job[:log] and !edge_opts[:no_log]
+      if job[:log] and !edge_opts[:no_log]
+        gr += describe_node(job[:log])
+        gr += edge(uuid, job[:log], {label: "log"})
+      end
 
       gr
     end