ywana-core8 0.0.147 → 0.0.148

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.147",
3
+ "version": "0.0.148",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
package/src/html/table.js CHANGED
@@ -157,7 +157,7 @@ const DataTableCell = ({ row, column, cell, editable }) => {
157
157
  }
158
158
 
159
159
  return (
160
- <td className={column.id}>{render(column.type)}</td>
160
+ <td key={column.id} className={column.id}>{render(column.type)}</td>
161
161
  )
162
162
  }
163
163