Fix the irc label breakage

This commit is contained in:
Nicholas O'Leary 2013-09-09 21:42:12 +01:00
parent 95675bc6bc
commit f7bdece081
1 changed files with 1 additions and 1 deletions

View File

@ -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":"";