Browse Source

fix for updateCellByUniqueId on a filtered table

Dustin Utecht 6 years ago
parent
commit
116415425b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bootstrap-table.js

+ 1 - 1
src/bootstrap-table.js

@@ -2194,7 +2194,7 @@ class BootstrapTable {
       if (rowId === -1) {
         return
       }
-      this.data[rowId][field] = value
+      this.options.data[rowId][field] = value
     })
 
     if (params.reinit === false) {