If I enter a name for a tradfri node in nodered, then the name is not reflected, when viewing the flow UI.
The problem is that this.name is not used to name the node in the html UI file, so it should probably be changed to something like
return this.name || this.deviceName || "tradfri";
|
return this.deviceName || "tradfri"; |
If I enter a name for a tradfri node in nodered, then the name is not reflected, when viewing the flow UI.
The problem is that
this.nameis not used to name the node in the html UI file, so it should probably be changed to something likenode-red-contrib-node-tradfri/src/node-tradfri.html
Line 88 in c0c97ae