Browse Source

Merge pull request #128 from mamuesp/master

Bugfix: import function - undefined variable
dds
Paul Stoffregen 9 years ago
parent
commit
685ca7400c
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