fix: fix node valid detect (#21709)
This commit is contained in:
parent
eb9edf4908
commit
7c76458b18
1 changed files with 5 additions and 3 deletions
|
|
@ -184,9 +184,11 @@ const VarReferencePicker: FC<Props> = ({
|
|||
return startNode?.data
|
||||
|
||||
const node = getNodeInfoById(availableNodes, outputVarNodeId)?.data
|
||||
return {
|
||||
...node,
|
||||
id: outputVarNodeId,
|
||||
if (node) {
|
||||
return {
|
||||
...node,
|
||||
id: outputVarNodeId,
|
||||
}
|
||||
}
|
||||
}, [value, hasValue, isConstant, isIterationVar, iterationNode, availableNodes, outputVarNodeId, startNode, isLoopVar, loopNode])
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue