Oops, forgot to remove the node.status code - it's gone now

This commit is contained in:
juggledad 2020-12-02 18:56:52 -05:00 committed by GitHub
parent b9c26b653f
commit d129fe6248
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,6 @@ module.exports = function(RED) {
var tmp = {};
this.on("input", function(msg) {
this.status({}); // blank out the status on a deploy
tmp.low = 1 // set this as the default low value
tmp.low_e = ""
@ -69,7 +68,6 @@ module.exports = function(RED) {
}
RED.util.setMessageProperty(msg,node.property,value);
this.status({fill:"grey",shape:"dot",text:"random: from " + tmp.low + " to " + tmp.high});
node.send(msg);
}
});