Skip to content

Commit

Permalink
Stray small changes from structured_tool_state branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Jun 28, 2024
1 parent 213ff26 commit 7df6b38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions client/src/components/Tool/ToolForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,9 @@ export default {
canMutateHistory() {
return this.currentHistory && canMutateHistory(this.currentHistory);
},
runButtonTitle() {
return "Run Tool";
},
},
watch: {
currentHistoryId() {
Expand Down
4 changes: 2 additions & 2 deletions lib/galaxy/tool_util/parser/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,10 +401,10 @@ def parse_optional(self, default=None):
return self.get_bool("optional", default)

def parse_dynamic_options_elem(self):
"""Return an XML elemnt describing dynamic options."""
"""Return an XML element describing dynamic options."""
return None

def parse_static_options(self):
def parse_static_options(self) -> List[Tuple[str, str, bool]]:
"""Return list of static options if this is a select type without
defining a dynamic options.
"""
Expand Down

0 comments on commit 7df6b38

Please sign in to comment.