Skip to content

Commit

Permalink
Fix display of tools where parameter values have been added
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Oct 11, 2023
1 parent 7b978a0 commit d989ec3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lib/galaxy/managers/workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,15 @@ def do_inputs(inputs, values, prefix, step, other_values=None):
except KeyError:
continue
else:
row_for_param(input_dict, input, values[input.name], other_values, prefix, step)
row_for_param(
input_dict,
input,
# Use values.get so that unspecified param values don't blow up the display
values.get(input.name),
other_values,
prefix,
step,
)
input_dicts.append(input_dict)
return input_dicts

Expand Down

0 comments on commit d989ec3

Please sign in to comment.