diff --git a/lib/galaxy/managers/jobs.py b/lib/galaxy/managers/jobs.py index e76208ce91d2..3254396fcf78 100644 --- a/lib/galaxy/managers/jobs.py +++ b/lib/galaxy/managers/jobs.py @@ -965,8 +965,6 @@ def inputs_recursive(input_params, param_values, depth=1, upgrade_messages=None) # Get parameter label. if input.type == "conditional": label = input.test_param.label - elif input.type == "repeat": - label = input.label() else: label = input.label or input.name rval.append( diff --git a/lib/galaxy/tools/parameters/grouping.py b/lib/galaxy/tools/parameters/grouping.py index 14383ae2fd06..5428ca836295 100644 --- a/lib/galaxy/tools/parameters/grouping.py +++ b/lib/galaxy/tools/parameters/grouping.py @@ -102,6 +102,7 @@ def title(self, value): def title_plural(self): return inflector.pluralize(self.title) + @property def label(self): return f"Repeat ({self.title})" @@ -183,6 +184,7 @@ def __init__(self): def title_plural(self): return inflector.pluralize(self.title) + @property def label(self): return f"Section ({self.title})"