Skip to content

Commit

Permalink
Fix language a bit in restriction type selection box.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Dec 10, 2019
1 parent 019bb6d commit 10807cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/workflow/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 10807cd

Please sign in to comment.