Merge branch 'master' into 5720-ajax-loading-error
[arvados.git] / apps / workbench / app / views / pipeline_instances / _show_components.html.erb
index 82f18e7c494dc4a327ebbf5fe38addf965aa16e6..dae57aa0e85ebbe3ccf7ce183a185dcc860b3f0b 100644 (file)
@@ -2,7 +2,7 @@
 
   <%
      job_uuids = @object.components.map { |k,j| j.is_a? Hash and j[:job].andand[:uuid] }.compact
-     throttle = @object.state == 'Running' ? 5000 : 15000
+     throttle = @object.state.start_with?('Running') ? 5000 : 15000
      %>
   <div class="arv-log-refresh-control"
        data-load-throttle="<%= throttle %>"
@@ -13,6 +13,8 @@
 
 <% else %>
   <%# state is either New or Ready %>
+  <%= render_unreadable_inputs_present %>
+
   <p><i>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.</i></p>
 
   <%= render_pipeline_components("editable", :json, editable: true) %>