浏览代码

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


正在加载...
取消
保存