mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Correct logic to avoid 'undefined' label style being inserted.
This commit is contained in:
parent
06542d95f2
commit
553935ecc8
@ -1209,7 +1209,7 @@ RED.view = (function() {
|
||||
.attr('class',function(d){
|
||||
return 'node_label'+
|
||||
(d._def.align?' node_label_'+d._def.align:'')+
|
||||
(d._def.label?' '+(typeof d._def.labelStyle == "function" ? d._def.labelStyle.call(d):d._def.labelStyle):'') ;
|
||||
(d._def.labelStyle?' '+(typeof d._def.labelStyle == "function" ? d._def.labelStyle.call(d):d._def.labelStyle):'') ;
|
||||
});
|
||||
thisNode.selectAll(".node_tools").attr("x",function(d){return d.w-35;}).attr("y",function(d){return d.h-20;});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user