From f7bdece08180e803aeb0c1660da6e8c1c1e7497c Mon Sep 17 00:00:00 2001 From: Nicholas O'Leary Date: Mon, 9 Sep 2013 21:42:12 +0100 Subject: [PATCH] Fix the irc label breakage --- nodes/social/91-irc.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes/social/91-irc.html b/nodes/social/91-irc.html index 5c78784d4..10f062ec9 100644 --- a/nodes/social/91-irc.html +++ b/nodes/social/91-irc.html @@ -43,7 +43,7 @@ icon: "hash.png", label: function() { var ircNode = RED.nodes.node(this.ircserver); - return this.name||((ircNode?ircNode.label():"irc"); + return this.name||(ircNode?ircNode.label():"irc"); }, labelStyle: function() { return this.name?"node_label_italic":"";