node-red-contrib-excelsheets
Advanced tools
Comparing version 1.1.0 to 1.1.1
{ | ||
"name": "node-red-contrib-excelsheets", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "writes multi-sheet excel files", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -66,2 +66,3 @@ # node-red-contrib-excelsheets | ||
## Change Log | ||
* 1.1.1 - Fixed problem with "Standard" input. | ||
* 1.1.0 - Created "Flexible" input option that parses object keys as sheet names and recursively parses multi-level objects in the row data | ||
@@ -68,0 +69,0 @@ * 1.0.5 - Updated docs to refer to correct msg property: filepath (not filename, ) |
@@ -22,3 +22,3 @@ module.exports = function (RED) { | ||
} | ||
if(isObject(msg.payload)){ | ||
if(isObject(msg.payload) && !Array.isArray(msg.payload)){ | ||
msg.payload = convertObjectToArray(msg.payload); | ||
@@ -25,0 +25,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17979
78