Skip to content

Commit

Permalink
Fix job parameter summary for inputs without label
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Jan 21, 2025
1 parent d42783b commit ec05106
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/galaxy/managers/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,11 @@ def inputs_recursive(input_params, param_values, depth=1, upgrade_messages=None)
is_valid = False
if is_valid:
rval.append(
dict(text=input.test_param.label, depth=depth, value=input.cases[current_case].value)
dict(
text=input.test_param.label or input.test_param.name,
depth=depth,
value=input.cases[current_case].value,
)
)
rval.extend(
inputs_recursive(
Expand Down

0 comments on commit ec05106

Please sign in to comment.