mirror of
https://github.com/node-red/node-red.git
synced 2025-03-01 10:36:34 +00:00
prevent conversion of circular structure
This commit is contained in:
@@ -2461,7 +2461,7 @@ RED.editor = (function() {
|
|||||||
changes[d] = oldValues[d];
|
changes[d] = oldValues[d];
|
||||||
changed = true;
|
changed = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else if (d !== "nodes") {
|
||||||
if (JSON.stringify(oldValues[d]) !== JSON.stringify(editing_node[d])) {
|
if (JSON.stringify(oldValues[d]) !== JSON.stringify(editing_node[d])) {
|
||||||
changes[d] = oldValues[d];
|
changes[d] = oldValues[d];
|
||||||
changed = true;
|
changed = true;
|
||||||
|
Reference in New Issue
Block a user