1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix config node tab entry for blank label

This commit is contained in:
Nick O'Leary 2014-02-23 20:58:24 +00:00
parent f81ebf0e64
commit a0aec3f8f1

View File

@ -47,6 +47,7 @@ RED.configTab = function() {
} else {
label = node._def.label;
}
label = label || " ";
var entry = $('<div class="tab-config-list-entry"></div>').appendTo(li);
entry.on('dblclick',function(e) {