1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Merge branch 'dev' into adding-timeout-to-functio-node

This commit is contained in:
Kilian Hertel 2023-06-02 12:20:51 +02:00 committed by GitHub
commit 220a621dc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -720,10 +720,13 @@ RED.editor = (function() {
if (typeof editing_node[d] === "string" || typeof editing_node[d] === "number") {
oldValues[d] = editing_node[d];
} else {
// Dont clone the group node `nodes` array
if (editing_node.type !== 'group' || d !== "nodes") {
oldValues[d] = $.extend(true,{},{v:editing_node[d]}).v;
}
}
}
}
try {
var rc = editing_node._def.oneditsave.call(editing_node);