Environment
Node-RED 2.0.5
Repro
For my custom node, I allow two input ports, so in node.html, I filled the number of inputs this way
inputs: 2,
outputs: 2,
Expectation
Knowing that NR supports a single in-port, I expect to see just one in-port at the left end of my node.
Observation
- However, the node in the workspace looks like there are no in-ports at all.
- There appear to be two out-ports as expected
Question
This behavior feels a bit counterintuitive. Is this by design? Should I remember to keep the "inputs" field as either 1 or 0 at all times?