mirror of https://github.com/node-red/node-red.git
Ensure subflow change state is cleared after deploy
parent
de7339ae97
commit
960af87fb0
|
@ -612,7 +612,10 @@ RED.deploy = (function() {
|
|||
}
|
||||
});
|
||||
RED.nodes.eachSubflow(function (subflow) {
|
||||
subflow.changed = false;
|
||||
if (subflow.changed) {
|
||||
subflow.changed = false;
|
||||
RED.events.emit("subflows:change", subflow);
|
||||
}
|
||||
});
|
||||
RED.nodes.eachWorkspace(function (ws) {
|
||||
if (ws.changed || ws.added) {
|
||||
|
|
Loading…
Reference in New Issue