From b4669f747799c503e43938b7c9b7fd4672738eef Mon Sep 17 00:00:00 2001 From: Jonathan Dobson Date: Fri, 19 Sep 2025 10:45:19 -0400 Subject: [PATCH] Jon/hotfix always allow cache key edit (#3479) --- .../editor/nodes/StartNode/StartNode.tsx | 60 +++++++++---------- 1 file changed, 29 insertions(+), 31 deletions(-) diff --git a/skyvern-frontend/src/routes/workflows/editor/nodes/StartNode/StartNode.tsx b/skyvern-frontend/src/routes/workflows/editor/nodes/StartNode/StartNode.tsx index ac5f6fb4..c818cfb3 100644 --- a/skyvern-frontend/src/routes/workflows/editor/nodes/StartNode/StartNode.tsx +++ b/skyvern-frontend/src/routes/workflows/editor/nodes/StartNode/StartNode.tsx @@ -222,41 +222,39 @@ function StartNode({ id, data }: NodeProps) { /> - {inputs.useScriptCache && ( -
-
-
- - -
- { - const v = value.length ? value : null; - handleChange("scriptCacheKey", v); + {/* {inputs.useScriptCache && ( .. // TODO(jdo/always-generate): put back */} +
+
+
+ + +
+ { + const v = value.length ? value : null; + handleChange("scriptCacheKey", v); + }} + value={inputs.scriptCacheKey ?? ""} + placeholder={placeholders["scripts"]["scriptKey"]} + className="nopan text-xs" + /> +
+
+
+ + + { + handleChange("aiFallback", value); }} - value={inputs.scriptCacheKey ?? ""} - placeholder={ - placeholders["scripts"]["scriptKey"] - } - className="nopan text-xs" />
-
-
- - - { - handleChange("aiFallback", value); - }} - /> -
-
- )} +
+ {/* )} */}