Skip to content

Commit

Permalink
fix #188
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenFang committed Dec 21, 2015
1 parent a27a3bf commit 689b60f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/TableDataStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 689b60f

Please sign in to comment.