diff --git a/src/store/TableDataStore.js b/src/store/TableDataStore.js index f96382dfc..c2fa4fbc9 100644 --- a/src/store/TableDataStore.js +++ b/src/store/TableDataStore.js @@ -117,7 +117,7 @@ export class TableDataStore { if (this.isOnFilter) { this.data.forEach(function (row) { if (row[this.keyField] === rowKeyCache) { - row[this.keyField][fieldName] = newVal; + row[fieldName] = newVal; } }, this); }