Skip to content

Commit ec05106

Browse files
committed
Fix job parameter summary for inputs without label
1 parent d42783b commit ec05106

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

lib/galaxy/managers/jobs.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1084,7 +1084,11 @@ def inputs_recursive(input_params, param_values, depth=1, upgrade_messages=None)
10841084
is_valid = False
10851085
if is_valid:
10861086
rval.append(
1087-
dict(text=input.test_param.label, depth=depth, value=input.cases[current_case].value)
1087+
dict(
1088+
text=input.test_param.label or input.test_param.name,
1089+
depth=depth,
1090+
value=input.cases[current_case].value,
1091+
)
10881092
)
10891093
rval.extend(
10901094
inputs_recursive(

0 commit comments

Comments
 (0)