From 689b60f9e51873ee453a847772d3b7e293f98a6b Mon Sep 17 00:00:00 2001 From: AllenFang Date: Mon, 21 Dec 2015 20:18:27 +0800 Subject: [PATCH] fix #188 --- src/store/TableDataStore.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }