diff --git a/src/frontend/src/utils/reactflowUtils.ts b/src/frontend/src/utils/reactflowUtils.ts index 7386e59ff..94a7be448 100644 --- a/src/frontend/src/utils/reactflowUtils.ts +++ b/src/frontend/src/utils/reactflowUtils.ts @@ -413,6 +413,7 @@ export function validateNode(node: NodeType, edges: Edge[]): Array { return Object.keys(template).reduce((errors: Array, t) => { if ( template[t].required && + !(template[t].tool_mode && node?.data?.node?.tool_mode) && template[t].show && (template[t].value === undefined || template[t].value === null ||