Fixed #4337 - DataTable: editingRows is not reactive
parent
bb12c9e724
commit
12ec288a80
|
@ -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