X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cbbfc43117251de9ea8eb858b02b50809b488717..3baf79475a93929350590d17a95b636408cd603e:/apps/workbench/app/views/pipeline_instances/_show_recent.html.erb diff --git a/apps/workbench/app/views/pipeline_instances/_show_recent.html.erb b/apps/workbench/app/views/pipeline_instances/_show_recent.html.erb index bfb3dc840e..ed5b2d086a 100644 --- a/apps/workbench/app/views/pipeline_instances/_show_recent.html.erb +++ b/apps/workbench/app/views/pipeline_instances/_show_recent.html.erb @@ -39,7 +39,7 @@ - <%= check_box_tag 'uuids[]', ob.uuid, false %> + <%= check_box_tag 'uuids[]', ob.uuid, false, :class => 'persistent-selection' %> <% if ob.success %> success @@ -57,15 +57,17 @@ - + - + <% ob.components.each do |cname, c| %> <% status = if !(c.is_a?(Hash) && c[:job].is_a?(Hash)) nil - elsif c[:job][:success] + elsif c[:job][:success] == true 'success' - elsif c[:job][:running] + elsif c[:job][:success] == false + 'danger' + elsif c[:job][:running] == true 'info' else 'warning'