From 7c7c37d8b3e297d6f7cc01e1b0317956a1dfee1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nathana=C3=ABl=20L=C3=A9caud=C3=A9?= Date: Tue, 28 Nov 2017 18:09:10 -0500 Subject: [PATCH] node-red-node-discovery: remove status text --- io/mdns/mdns.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io/mdns/mdns.js b/io/mdns/mdns.js index b74a064f..c448cb66 100644 --- a/io/mdns/mdns.js +++ b/io/mdns/mdns.js @@ -79,7 +79,7 @@ module.exports = function(RED) { this.stop(); node.ad = mdns.createAdvertisement(service, port, options); node.ad.start(); - node.status({fill: "green", shape: "dot", text: "started"}); + node.status({fill: "green", shape: "dot"}); } }); @@ -94,7 +94,7 @@ module.exports = function(RED) { this.stop = function() { if (node.ad) { node.ad.stop(); - node.status({fill: "red", shape: "dot", text: "stopped"}); + node.status({fill: "red", shape: "ring"}); } }