updateRow: minor fix

This commit is contained in:
Faris Ansari 2018-05-09 18:10:45 +05:30
parent 9151fe2886
commit e1a54de352

View File

@ -381,7 +381,7 @@ export default class DataManager {
}
}
const _row = this.prepareRow(row, rowIndex);
const _row = this.prepareRow(row, {rowIndex});
const index = this.rows.findIndex(row => row[0].rowIndex === rowIndex);
this.rows[index] = _row;