mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
parent
8f424c063e
commit
70632706f9
@ -318,7 +318,7 @@ class Flow {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
stopList = nodesToStop.concat(configsToStop);
|
stopList = nodesToStop.concat(configsToStop);
|
||||||
|
|
||||||
var promises = [];
|
var promises = [];
|
||||||
for (i=0;i<stopList.length;i++) {
|
for (i=0;i<stopList.length;i++) {
|
||||||
var node = this.activeNodes[stopList[i]];
|
var node = this.activeNodes[stopList[i]];
|
||||||
@ -376,6 +376,8 @@ class Flow {
|
|||||||
} else if (this.activeNodes[id]) {
|
} else if (this.activeNodes[id]) {
|
||||||
// TEMP: this is a subflow internal node within this flow
|
// TEMP: this is a subflow internal node within this flow
|
||||||
return this.activeNodes[id];
|
return this.activeNodes[id];
|
||||||
|
} else if (this.subflowInstanceNodes[id]) {
|
||||||
|
return this.subflowInstanceNodes[id];
|
||||||
} else if (cancelBubble) {
|
} else if (cancelBubble) {
|
||||||
// The node could be inside one of this flow's subflows
|
// The node could be inside one of this flow's subflows
|
||||||
var node;
|
var node;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user