mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Handle nodes with no wires array
This commit is contained in:
parent
1d417c07cd
commit
2f869a55e2
@ -1109,7 +1109,7 @@ RED.nodes = (function() {
|
|||||||
defaults: {},
|
defaults: {},
|
||||||
label: "unknown: "+n.type,
|
label: "unknown: "+n.type,
|
||||||
labelStyle: "red-ui-flow-node-label-italic",
|
labelStyle: "red-ui-flow-node-label-italic",
|
||||||
outputs: n.outputs||n.wires.length,
|
outputs: n.outputs|| (n.wires && n.wires.length) || 0,
|
||||||
set: registry.getNodeSet("node-red/unknown")
|
set: registry.getNodeSet("node-red/unknown")
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user