Skip to content

Commit

Permalink
Remove get initial value without repeats call from workflow run mako
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Aug 1, 2016
1 parent 24ecf34 commit 4d6754f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/webapps/galaxy/workflow/run.mako
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ if wf_parms:
## FIXME: Initialize in the controller
<%
if value is None:
value = other_values[ param.name ] = param.get_initial_value_from_history_prevent_repeats( t, other_values, already_used )
value = other_values[ param.name ] = param.get_initial_value( t, other_values )
if not enable_unique_defaults:
del already_used[:]
%>
Expand Down Expand Up @@ -521,7 +521,7 @@ if wf_parms:
## load, fill in initial values where needed, and mark
## all that are runtime modifiable in some way.
<%
value = other_values[ param.name ] = param.get_initial_value_from_history_prevent_repeats( t, other_values, already_used )
value = other_values[ param.name ] = param.get_initial_value( t, other_values )
if not enable_unique_defaults:
del already_used[:]
%>
Expand Down

0 comments on commit 4d6754f

Please sign in to comment.