diff --git a/client/src/components/Tool/ToolForm.vue b/client/src/components/Tool/ToolForm.vue index 33e430d1a1a8..0268d65bad8e 100644 --- a/client/src/components/Tool/ToolForm.vue +++ b/client/src/components/Tool/ToolForm.vue @@ -248,6 +248,9 @@ export default { canMutateHistory() { return this.currentHistory && canMutateHistory(this.currentHistory); }, + runButtonTitle() { + return "Run Tool"; + }, }, watch: { currentHistoryId() { diff --git a/lib/galaxy/tool_util/parser/interface.py b/lib/galaxy/tool_util/parser/interface.py index 0572b8b57960..8cb859deee1e 100644 --- a/lib/galaxy/tool_util/parser/interface.py +++ b/lib/galaxy/tool_util/parser/interface.py @@ -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. """