ui-kit-ck-consultant 0.5.240 → 0.5.242

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 CHANGED
@@ -740,7 +740,13 @@ var Table = /*#__PURE__*/function (_React$Component) {
740
740
  _this.getArray(children.props.children).forEach(function (line) {
741
741
  if (line.props && line.props.children) {
742
742
  _this.getArray(line.props.children).forEach(function (column) {
743
- dataCSV += (column.props.children || '').toString() + ";";
743
+ console.log(column.props);
744
+
745
+ if (column.props && column.props.children) {
746
+ dataCSV += column.props.children.toString() + ";";
747
+ } else {
748
+ dataCSV += '';
749
+ }
744
750
  });
745
751
 
746
752
  dataCSV += '\n';