Merge pull request #4343 from NikoGJ/fix/4337
Fixed #4337 - DataTable: editingRows is not reactivepull/4377/head
commit
9da4e1fe84
|
@ -386,9 +386,12 @@ export default {
|
|||
this.updateExpandedRowKeys(newValue);
|
||||
}
|
||||
},
|
||||
editingRows(newValue) {
|
||||
if (this.dataKey) {
|
||||
this.updateEditingRowKeys(newValue);
|
||||
editingRows: {
|
||||
deep: true,
|
||||
handler(newValue) {
|
||||
if (this.dataKey) {
|
||||
this.updateEditingRowKeys(newValue);
|
||||
}
|
||||
}
|
||||
},
|
||||
filters: {
|
||||
|
|
Loading…
Reference in New Issue