Revert "In Workflow Settings, disable the "Generate Code" toggle, and always set it to true." (#3488)
This commit is contained in:
@@ -50,7 +50,7 @@ const emptyWorkflowRequest: WorkflowCreateYAMLRequest = {
|
||||
title: "New Workflow",
|
||||
description: "",
|
||||
ai_fallback: true,
|
||||
generate_script: true,
|
||||
generate_script: false,
|
||||
workflow_definition: {
|
||||
blocks: [],
|
||||
parameters: [],
|
||||
|
||||
@@ -72,7 +72,7 @@ function StartNode({ id, data }: NodeProps<StartNode>) {
|
||||
? data.maxScreenshotScrolls
|
||||
: null,
|
||||
extraHttpHeaders: data.withWorkflowSettings ? data.extraHttpHeaders : null,
|
||||
useScriptCache: data.withWorkflowSettings ? data.useScriptCache : true, // TODO(jdo/always-generate): set to false
|
||||
useScriptCache: data.withWorkflowSettings ? data.useScriptCache : false,
|
||||
scriptCacheKey: data.withWorkflowSettings ? data.scriptCacheKey : null,
|
||||
aiFallback: data.withWorkflowSettings ? data.aiFallback : true,
|
||||
runSequentially: data.withWorkflowSettings ? data.runSequentially : false,
|
||||
@@ -211,14 +211,11 @@ function StartNode({ id, data }: NodeProps<StartNode>) {
|
||||
<Label>Generate Code</Label>
|
||||
<HelpTooltip content="Generate & use cached code for faster execution." />
|
||||
<Switch
|
||||
disabled={true} // TODO(jdo/always-generate): remove
|
||||
className="ml-auto"
|
||||
checked={true} // TODO(jdo/always-generate): set to `inputs.useScriptCache`
|
||||
onCheckedChange={
|
||||
(/*value*/) => {
|
||||
// handleChange("useScriptCache", value); // TODO(jdo/always-generate): put back
|
||||
}
|
||||
}
|
||||
checked={inputs.useScriptCache}
|
||||
onCheckedChange={(value) => {
|
||||
handleChange("useScriptCache", value);
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user