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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
@@ -944,7 +944,7 @@ var Table = /*#__PURE__*/function (_React$Component) {
|
|
944
944
|
if (line.props && line.props.children) {
|
945
945
|
_this.getArray(line.props.children).forEach(function (column) {
|
946
946
|
if (column.props && column.props.children) {
|
947
|
-
dataCSV += findStringChild(column.props.children).toString() + ";";
|
947
|
+
dataCSV += (findStringChild(column.props.children) || '').toString() + ";";
|
948
948
|
} else {
|
949
949
|
dataCSV += ';';
|
950
950
|
}
|