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

Merge pull request #2904 from node-red-hitachi/fix-exporting-config-node

fix exporting config node
This commit is contained in:
Nick O'Leary 2021-03-18 10:30:03 +00:00 committed by GitHub
commit 55f1e7ece1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -949,8 +949,8 @@ RED.nodes = (function() {
if (!(id in exportedConfigNodes)) { if (!(id in exportedConfigNodes)) {
exportedConfigNodes[id] = true; exportedConfigNodes[id] = true;
set.push(confNode); set.push(confNode);
return true;
} }
return true;
} }
return false; return false;
} }