X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b522f728ae1674c9b9bcee189885d919e91acccf..d8c4d51e70a5141447f6259792ffd41bcd2c8209:/apps/workbench/app/views/pipeline_instances/_show_components.html.erb diff --git a/apps/workbench/app/views/pipeline_instances/_show_components.html.erb b/apps/workbench/app/views/pipeline_instances/_show_components.html.erb index 94cbf98489..71cee7796b 100644 --- a/apps/workbench/app/views/pipeline_instances/_show_components.html.erb +++ b/apps/workbench/app/views/pipeline_instances/_show_components.html.erb @@ -1,17 +1,21 @@ <% if !@object.state.in? ['New', 'Ready'] %> -
- Current state: - <% if @object.state == "RunningOnServer" %> - Active - <% else %> - <%= @object.state %> - <% end %> -   -
+<% job_uuids = @object.components.map { |k,j| j[:job].andand[:uuid] }.compact %> + +
" + data-object-uuids="<%= @object.uuid %> <%= job_uuids.join(' ') %>" + data-load-throttle="5000" + > +
<%= render_pipeline_components("running", :json) %> +
+
+ <% else %> <%# state is either New or Ready %>

Here are all of the pipeline's components (jobs that will need to run in order to complete the pipeline). If you know what you're doing (or you're experimenting) you can modify these parameters before starting the pipeline. Usually, you only need to edit the settings presented on the "Inputs" tab above.