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.umd.js
CHANGED
@@ -1131,8 +1131,9 @@
|
|
1131
1131
|
onClick: function onClick(ev) {
|
1132
1132
|
return onSelect(row, ev);
|
1133
1133
|
}
|
1134
|
-
}, columns.map(function (column) {
|
1134
|
+
}, columns.map(function (column, index) {
|
1135
1135
|
return /*#__PURE__*/React__default["default"].createElement(DataTableCell, {
|
1136
|
+
key: column.id + "_" + index,
|
1136
1137
|
row: row,
|
1137
1138
|
column: column,
|
1138
1139
|
cell: row[column.id],
|