Fix 2.4.2 upgrade notes formatting refs #19330
[arvados.git] / apps / workbench / app / views / application / _pipeline_progress.html.erb
1 <%# Copyright (C) The Arvados Authors. All rights reserved.
2
3 SPDX-License-Identifier: AGPL-3.0 %>
4
5 <% component_frac = 1.0 / p.components.length %>
6 <div class="progress">
7   <% p.components.each do |k,c| %>
8     <% if c.is_a?(Hash) and c[:job] %>
9       <%= render partial: "job_progress", locals: {:j => c[:job], :scaleby => component_frac } %>
10     <% end %>
11   <% end %>
12 </div>