fix: start node check (#5794)

* fix: start node check

* remove log

* fix: variables refresh

* fix: workflow start check

* fix: variables refresh

* perf: auto save

* perf: add log
This commit is contained in:
Archer
2025-10-21 09:51:13 +08:00
committed by GitHub
parent 44e9299d5e
commit 5054ccd487
9 changed files with 157 additions and 177 deletions
@@ -62,9 +62,12 @@ export const initToolNodes = (
nodes.forEach((node) => {
if (entryNodeIds.includes(node.nodeId)) {
node.isEntry = true;
node.isStart = true;
if (startParams) {
node.inputs = updateToolInputValue({ params: startParams, inputs: node.inputs });
}
} else {
node.isStart = false;
}
});
};