Sfoglia il codice sorgente

Merge pull request #128 from mamuesp/master

Bugfix: import function - undefined variable
dds
Paul Stoffregen 9 anni fa
parent
commit
685ca7400c
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      gui/red/nodes.js

+ 1
- 1
gui/red/nodes.js Vedi 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…
Annulla
Salva