mirror of https://github.com/node-red/node-red.git
Merge pull request #2607 from node-red-hitachi/fix-stringify-error
prevent conversion of circular structurepull/2610/head
commit
81a4f42673
|
@ -2461,7 +2461,7 @@ RED.editor = (function() {
|
|||
changes[d] = oldValues[d];
|
||||
changed = true;
|
||||
}
|
||||
} else {
|
||||
} else if (d !== "nodes") {
|
||||
if (JSON.stringify(oldValues[d]) !== JSON.stringify(editing_node[d])) {
|
||||
changes[d] = oldValues[d];
|
||||
changed = true;
|
||||
|
|
Loading…
Reference in New Issue