From 7df6b38d0c0af2109f94953fb4a238c844a6b544 Mon Sep 17 00:00:00 2001
From: John Chilton <jmchilton@gmail.com>
Date: Fri, 28 Jun 2024 05:47:55 -0400
Subject: [PATCH] Stray small changes from structured_tool_state branch.

---
 client/src/components/Tool/ToolForm.vue  | 3 +++
 lib/galaxy/tool_util/parser/interface.py | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

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.
         """