I updated the Node-RED addon to the new 3.0 version (yes, I made a backup to fall back to beforehand). Noticed 2 issues pretty quickly after updating.
-
I have dark mode enabled, and the new text box editor (like for function nodes) is not being shown in dark mode.
-
getting odd errors about every function node that has variables used, even though the function nodes still work as expected. Seeing an error in the editor about not being able to find a variable name. It even throws up the little orange triangle on the node and gives a warning when deploying, and then proceeds to work exactly as I expect it to. A quick and dirty example of it is:
[{"id":"c5d03ee60a8749e3","type":"tab","label":"Flow 2","disabled":false,"info":"","env":[]},{"id":"81354314d6b7fe2b","type":"inject","z":"c5d03ee60a8749e3","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"testing","payload":"test","payloadType":"str","x":160,"y":200,"wires":[["5198fd1a96addeab"]]},{"id":"e26cdef981f99e88","type":"debug","z":"c5d03ee60a8749e3","name":"debug 1","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":640,"y":160,"wires":[]},{"id":"5198fd1a96addeab","type":"function","z":"c5d03ee60a8749e3","name":"function 1","func":"a = msg.payload\nb = msg.topic\nmsg.payload = b\nmsg.topic = a\nreturn msg;","outputs":1,"noerr":4,"initialize":"","finalize":"","libs":[],"x":420,"y":200,"wires":[["e26cdef981f99e88"]]}]