Browse Source

Bugfix: import function - undefined variable

dds
Manfred Müller-Späth 9 years ago
parent
commit
1b990b7ca4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      gui/red/nodes.js

+ 1
- 1
gui/red/nodes.js View File

@@ -453,7 +453,7 @@ RED.nodes = (function() {
return {
count: nodes.length,
skipped: skipped.length,
data: count > 0 ? JSON.stringify(nodes) : ""
data: nodes.length > 0 ? JSON.stringify(nodes) : ""
};
}


Loading…
Cancel
Save