Bugfix: import function - undefined variabledds
| return { | return { | ||||
| count: nodes.length, | count: nodes.length, | ||||
| skipped: skipped.length, | skipped: skipped.length, | ||||
| data: count > 0 ? JSON.stringify(nodes) : "" | |||||
| data: nodes.length > 0 ? JSON.stringify(nodes) : "" | |||||
| }; | }; | ||||
| } | } | ||||