Przeglądaj źródła

Bugfix: import function - undefined variable

dds
Manfred Müller-Späth 9 lat temu
rodzic
commit
1b990b7ca4
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      gui/red/nodes.js

+ 1
- 1
gui/red/nodes.js Wyświetl plik

@@ -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) : ""
};
}


Ładowanie…
Anuluj
Zapisz