mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
[help-sidebar] Tidy up some errors
This commit is contained in:
parent
ff310f89bd
commit
9f1373945b
@ -318,8 +318,6 @@ RED.sidebar.help = (function() {
|
|||||||
} else if (node.type !== 'group'){
|
} else if (node.type !== 'group'){
|
||||||
showHelp(node.type);
|
showHelp(node.type);
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
refresh(selection.nodes);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -303,7 +303,7 @@
|
|||||||
return this.name;
|
return this.name;
|
||||||
}
|
}
|
||||||
var b = this.broker;
|
var b = this.broker;
|
||||||
if (b === "") { b = "undefined"; }
|
if (!b) { b = "undefined"; }
|
||||||
var lab = "";
|
var lab = "";
|
||||||
lab = (this.clientid?this.clientid+"@":"")+b;
|
lab = (this.clientid?this.clientid+"@":"")+b;
|
||||||
if (b.indexOf("://") === -1){
|
if (b.indexOf("://") === -1){
|
||||||
|
Loading…
Reference in New Issue
Block a user