ywana-core8 0.0.148 → 0.0.149
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.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +2 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +2 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/table.js +1 -1
package/dist/index.cjs
CHANGED
@@ -1134,8 +1134,9 @@ var DataTableRow = function DataTableRow(props) {
|
|
1134
1134
|
onClick: function onClick(ev) {
|
1135
1135
|
return onSelect(row, ev);
|
1136
1136
|
}
|
1137
|
-
}, columns.map(function (column) {
|
1137
|
+
}, columns.map(function (column, index) {
|
1138
1138
|
return /*#__PURE__*/React__default["default"].createElement(DataTableCell, {
|
1139
|
+
key: column.id + "_" + index,
|
1139
1140
|
row: row,
|
1140
1141
|
column: column,
|
1141
1142
|
cell: row[column.id],
|