5417: add "unreadable inputs provided" visual cue for an editable pipeline instance.
[arvados.git] / apps / workbench / app / views / pipeline_instances / _show_components.html.erb
index 7735997748389e1d3fa68713dc53c39626b961bf..a2dbada2b20019efdedf9cb914758f5cf2ed8d97 100644 (file)
 
 <% else %>
   <%# state is either New or Ready %>
+  <% if controller.class.name.eql?('PipelineInstancesController') and unreadable_inputs_present? %>
+    <div class="unreadable-inputs-present">
+      <p style="color:#ff6666"> One or more inputs provided are not readable by you. Please correct these before you can run the pipeline.</p>
+    </div>
+  <% end %>
+
   <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) %>