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.modern.js
CHANGED
@@ -1127,8 +1127,9 @@ var DataTableRow = function DataTableRow(props) {
|
|
1127
1127
|
onClick: function onClick(ev) {
|
1128
1128
|
return onSelect(row, ev);
|
1129
1129
|
}
|
1130
|
-
}, columns.map(function (column) {
|
1130
|
+
}, columns.map(function (column, index) {
|
1131
1131
|
return /*#__PURE__*/React.createElement(DataTableCell, {
|
1132
|
+
key: column.id + "_" + index,
|
1132
1133
|
row: row,
|
1133
1134
|
column: column,
|
1134
1135
|
cell: row[column.id],
|