We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbeaa50 commit 9a7ce78Copy full SHA for 9a7ce78
postgresql.js
@@ -12,7 +12,7 @@ function findInputNodeId(toNode, filter = null) {
12
const allNodes = toNode._flow.global.allNodes;
13
for (const fromNodeId of Object.keys(allNodes)) {
14
const fromNode = allNodes[fromNodeId];
15
- if (fromNode.wires) {
+ if (fromNode && fromNode.wires) {
16
for (const wireId of Object.keys(fromNode.wires)) {
17
const wire = fromNode.wires[wireId];
18
for (const toNodeId of wire) {
0 commit comments