From e68a438bb04c765640f0861246c31b3f60350a0a Mon Sep 17 00:00:00 2001 From: Kazuhito Yokoi Date: Wed, 28 Oct 2020 20:22:03 +0900 Subject: [PATCH] Fix status error in mongoDB node (#711) --- storage/mongodb/66-mongodb.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/mongodb/66-mongodb.js b/storage/mongodb/66-mongodb.js index 6b0a7954..759da6e6 100644 --- a/storage/mongodb/66-mongodb.js +++ b/storage/mongodb/66-mongodb.js @@ -69,7 +69,7 @@ module.exports = function(RED) { this.multi = n.multi || false; this.operation = n.operation; 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 noerror = true;