mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
restart node only if node's group changes
This commit is contained in:
@@ -438,15 +438,25 @@ module.exports = {
|
||||
if (newConfig.allNodes.hasOwnProperty(id)) {
|
||||
node = newConfig.allNodes[id];
|
||||
for (var prop in node) {
|
||||
if (ignoreGroup && (prop === "g")) {
|
||||
continue;
|
||||
}
|
||||
if (node.hasOwnProperty(prop) && prop != "z" && prop != "id" && prop != "wires") {
|
||||
// This node has a property that references a changed/removed node
|
||||
// Assume it is a config node change and mark this node as
|
||||
// changed.
|
||||
if (changed[node[prop]] || removed[node[prop]]) {
|
||||
|
||||
var changeOrigin = changed[node[prop]];
|
||||
if (changeOrigin || removed[node[prop]]) {
|
||||
if (!changed[node.id]) {
|
||||
if (changeOrigin &&
|
||||
(prop === "g") &&
|
||||
(changeOrigin.type === "group")) {
|
||||
var oldNode = oldConfig.allNodes[node.id];
|
||||
// ignore change of group node
|
||||
// if group of this node not changed
|
||||
if (oldNode &&
|
||||
(node.g === oldNode.g)) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
madeChange = true;
|
||||
changed[node.id] = node;
|
||||
// This node exists within subflow template
|
||||
|
||||
Reference in New Issue
Block a user