4.8.18 test (#3571)

* rename

* update doc

* doc

* doc

* perf: intro
This commit is contained in:
Archer
2025-01-13 10:43:38 +08:00
committed by GitHub
parent d0d1a2cae8
commit 4dfeb21da3
8 changed files with 24 additions and 21 deletions

View File

@@ -339,6 +339,7 @@ export function replaceEditorVariable({
const output = node.outputs.find((output) => output.id === id);
if (output) return formatVariableValByType(output.value, output.valueType);
// Use the node's input as the variable value(Example: HTTP data will reference its own dynamic input)
const input = node.inputs.find((input) => input.key === id);
if (input) return getReferenceVariableValue({ value: input.value, nodes, variables });
})();