ui-kit-ck-consultant 0.6.6 → 0.6.7
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -892,9 +892,9 @@ var Table = /*#__PURE__*/function (_React$Component) {
|
|
892
892
|
_this.getArray(children.props.children).forEach(function (line) {
|
893
893
|
if (line.props && line.props.children) {
|
894
894
|
_this.getArray(line.props.children).forEach(function (column) {
|
895
|
-
if (column.props && column.props.children && column.props.children.props && column.props.children.props.text) {
|
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
|
-
} else if (column.props && column.props.children) {
|
897
|
+
} else if (column && column.props && column.props.children) {
|
898
898
|
dataCSV += column.props.children.toString() + ";";
|
899
899
|
} else {
|
900
900
|
dataCSV += ';';
|