Skip to content

Commit 1d74493

Browse files
committed
#137. Fix del row key
1 parent 3b90563 commit 1d74493

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

build/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gigatables-react",
3-
"version": "2.8.11",
3+
"version": "2.8.12",
44
"description": "GigaTables is a ReactJS plug-in to help web-developers process table-data in applications and CMS, CRM, ERP or similar systems. It supports ajax data processing/editing (CRUD), pagination, cross-sorting, global search, shft/ctrl rows selection, 7 popular languages and more.",
55
"main": "./build/index.js",
66
"dependencies": {

src/components/Main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ class Main extends Component {
547547
} = this.state;
548548

549549
for (let dataKey in dataIndices) {
550-
for (let key in this.jsonData[key]) {
550+
for (let key in this.jsonData) {
551551
rowId = this.getRowId(this.jsonData[key]);
552552

553553
if (dataIndices[dataKey] === rowId) {

0 commit comments

Comments
 (0)