ui-kit-ck-consultant 0.6.3 → 0.6.4

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
@@ -947,7 +947,7 @@ var Table = /*#__PURE__*/function (_React$Component) {
947
947
  if (line.props && line.props.children) {
948
948
  _this.getArray(line.props.children).forEach(function (column) {
949
949
  if (column.props && column.props.children) {
950
- dataCSV += findStringChild(column.props.children).toString() + ";";
950
+ dataCSV += (findStringChild(column.props.children) || '').toString() + ";";
951
951
  } else {
952
952
  dataCSV += ';';
953
953
  }