mirror of https://github.com/node-red/node-red.git
Update nodeTabMap when replacing unknown nodes
parent
5c06761b1a
commit
e7f942eda7
|
@ -1434,6 +1434,9 @@ RED.nodes = (function() {
|
|||
delete configNodes[n.id];
|
||||
} else {
|
||||
nodes.splice(nodes.indexOf(n),1);
|
||||
if (nodeTabMap[n.z]) {
|
||||
delete nodeTabMap[n.z][n.id];
|
||||
}
|
||||
}
|
||||
reimportList.push(convertNode(n));
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue