X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d61f27791aa739dfc93c2f953236fffd4f0fcf6c..a3222e35cda68c8e48a17921c33ac37ecb5c3bac:/apps/workbench/app/views/pipeline_instances/_show_inputs.html.erb diff --git a/apps/workbench/app/views/pipeline_instances/_show_inputs.html.erb b/apps/workbench/app/views/pipeline_instances/_show_inputs.html.erb index 5ef8444e43..4573919286 100644 --- a/apps/workbench/app/views/pipeline_instances/_show_inputs.html.erb +++ b/apps/workbench/app/views/pipeline_instances/_show_inputs.html.erb @@ -8,11 +8,11 @@ <% component[:script_parameters].andand.each do |pname, pvalue_spec| %> <% if pvalue_spec.is_a? Hash %> <% if (pvalue_spec[:description] or - (pvalue_spec[:required] and not pvalue_spec[:value])) %> + ((pvalue_spec[:required] or pvalue_spec[:optional] == false) and + not pvalue_spec[:value])) %> <% n_inputs += 1 %>

@@ -31,20 +31,20 @@ <% end %> <% if n_inputs == 0 %> -

This pipeline does not need any further inputs specified. You can start it by clicking the "Run" button.

+

This pipeline does not need any further inputs specified. You can start it by clicking the "Run" button whenever you're ready. (It's not too late to change existing settings, though.)

<% else %>

Provide <%= n_inputs > 1 ? 'values' : 'a value' %> for the following <%= n_inputs > 1 ? 'parameters' : 'parameter' %>, then click the "Run" button to start the pipeline.

<%= content_for :pi_input_form %> - <%= form_tag @object, :method => :put do |f| %> - <%= hidden_field @object.class.to_s.underscore.singularize.to_sym, :state, :value => 'RunningOnServer' %> - <%= button_tag({class: 'btn btn-primary run-pipeline-button'}) do %> - Run - <% end %> + <%= link_to(url_for('pipeline_instance[state]' => 'RunningOnServer'), + class: 'btn btn-primary run-pipeline-button', + method: :patch + ) do %> + Run <% end %> <% end %>
-

Click the "Components" tab above to see a full list of pipeline components and parameters.

+

Click the "Components" tab above to see a full list of pipeline settings.