diff --git a/lib/galaxy/workflow/modules.py b/lib/galaxy/workflow/modules.py index 2190bef14665..b377a8b0488b 100644 --- a/lib/galaxy/workflow/modules.py +++ b/lib/galaxy/workflow/modules.py @@ -891,7 +891,7 @@ def get_inputs(self): restrict_how_source["options"] = [ {"value": "none", "label": "Do not specify restrictions (default).", "selected": restrict_how_value == "none" }, {"value": "onConnections", "label": "Attempt restriction based on connections.", "selected": restrict_how_value == "onConnections"}, - {"value": "staticRestrictions", "label": "Provide list of restricted values.", "selected": restrict_how_value == "staticRestrictions"}, + {"value": "staticRestrictions", "label": "Provide list of all possible values.", "selected": restrict_how_value == "staticRestrictions"}, {"value": "staticSuggestions", "label": "Provide list of suggested values.", "selected": restrict_how_value == "staticSuggestions"}, ] restrictions_cond = Conditional()