ui-kit-ck-consultant 0.6.7 → 0.6.8

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
@@ -895,7 +895,15 @@ var Table = /*#__PURE__*/function (_React$Component) {
895
895
  if (column && column.props && column.props.children && column.props.children.props && column.props.children.props.text) {
896
896
  dataCSV += column.props.children.props.text + ";";
897
897
  } else if (column && column.props && column.props.children) {
898
- dataCSV += column.props.children.toString() + ";";
898
+ var child = column.props.children;
899
+
900
+ if (typeof child === 'string' || typeof child === 'number') {
901
+ dataCSV += child + ";";
902
+ } else if (React__default.isValidElement(child) && child.props && child.props.children) {
903
+ dataCSV += child.props.children.toString() + ";";
904
+ } else {
905
+ dataCSV += ';';
906
+ }
899
907
  } else {
900
908
  dataCSV += ';';
901
909
  }