ywana-core8 0.0.200 → 0.0.201

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.
@@ -1552,10 +1552,13 @@ var DataTableCell = function DataTableCell(_ref2) {
1552
1552
  };
1553
1553
 
1554
1554
  var EntityCellViewer = function EntityCellViewer(_ref3) {
1555
- var value = _ref3.value;
1555
+ var id = _ref3.id,
1556
+ value = _ref3.value;
1557
+ console.log(id, value);
1558
+ var subcells = value ? Object.values(value) : [1, 2, 3];
1556
1559
  return /*#__PURE__*/React.createElement("div", {
1557
1560
  className: "entity-cell-viewer"
1558
- }, value.map(function (v) {
1561
+ }, subcells.map(function (v) {
1559
1562
  return /*#__PURE__*/React.createElement("div", null, v);
1560
1563
  }));
1561
1564
  };