Fix status error in mongoDB node (#711)

This commit is contained in:
Kazuhito Yokoi
2020-10-28 20:22:03 +09:00
committed by GitHub
parent efcf91a6df
commit e68a438bb0

View File

@@ -69,7 +69,7 @@ module.exports = function(RED) {
this.multi = n.multi || false; this.multi = n.multi || false;
this.operation = n.operation; this.operation = n.operation;
this.mongoConfig = RED.nodes.getNode(this.mongodb); this.mongoConfig = RED.nodes.getNode(this.mongodb);
this.status({fill:"grey",shape:"ring",text:RED._("mongodbstatus.connecting")}); this.status({fill:"grey",shape:"ring",text:RED._("mongodb.status.connecting")});
var node = this; var node = this;
var noerror = true; var noerror = true;