소스 검색

Bugfix: import function - undefined variable

dds
Manfred Müller-Späth 9 년 전
부모
커밋
1b990b7ca4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      gui/red/nodes.js

+ 1
- 1
gui/red/nodes.js 파일 보기

@@ -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…
취소
저장