mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
fix error on empty label
This commit is contained in:
parent
243915516e
commit
5f5e6ea845
@ -4287,6 +4287,7 @@ if (DEBUG_EVENTS) { console.warn("nodeMouseDown", mouse_mode,d); }
|
|||||||
.style("fill", d.style.hasOwnProperty('color')?d.style.color:"#999")
|
.style("fill", d.style.hasOwnProperty('color')?d.style.color:"#999")
|
||||||
.attr("transform","translate("+labelX+","+labelY+")")
|
.attr("transform","translate("+labelX+","+labelY+")")
|
||||||
.attr("text-anchor",labelAnchor);
|
.attr("text-anchor",labelAnchor);
|
||||||
|
if (d.labels) {
|
||||||
var ypos = 0;
|
var ypos = 0;
|
||||||
g.selectAll(".red-ui-flow-group-label-text").remove();
|
g.selectAll(".red-ui-flow-group-label-text").remove();
|
||||||
d.labels.forEach(function (name) {
|
d.labels.forEach(function (name) {
|
||||||
@ -4298,6 +4299,7 @@ if (DEBUG_EVENTS) { console.warn("nodeMouseDown", mouse_mode,d); }
|
|||||||
ypos += 15;
|
ypos += 15;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
delete dirtyGroups[d.id];
|
delete dirtyGroups[d.id];
|
||||||
delete d.dirty;
|
delete d.dirty;
|
||||||
|
Loading…
Reference in New Issue
Block a user