ui-kit-ck-consultant 0.6.61 → 0.6.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -8
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +5 -8
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -891,17 +891,14 @@ var Table = /*#__PURE__*/function (_React$Component) {
|
|
891
891
|
var dataCSV = '';
|
892
892
|
|
893
893
|
if (_this.props.data) {
|
894
|
-
Object.keys(_this.props.data).
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
dataCSV += rowData + '\n';
|
900
|
-
});
|
894
|
+
var rowData = Object.keys(_this.props.data).map(function (cell) {
|
895
|
+
return cell || '';
|
896
|
+
}).join(';');
|
897
|
+
dataCSV += rowData + '\n';
|
901
898
|
|
902
899
|
_this.props.data.map(function (row) {
|
903
900
|
var rowData = row.map(function (cell) {
|
904
|
-
return cell
|
901
|
+
return cell || '';
|
905
902
|
}).join(';');
|
906
903
|
dataCSV += rowData + '\n';
|
907
904
|
});
|