Fixed #4337 - DataTable: editingRows is not reactive
parent
bb12c9e724
commit
12ec288a80
|
@ -386,9 +386,12 @@ export default {
|
||||||
this.updateExpandedRowKeys(newValue);
|
this.updateExpandedRowKeys(newValue);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
editingRows(newValue) {
|
editingRows: {
|
||||||
if (this.dataKey) {
|
deep: true,
|
||||||
this.updateEditingRowKeys(newValue);
|
handler(newValue) {
|
||||||
|
if (this.dataKey) {
|
||||||
|
this.updateEditingRowKeys(newValue);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
filters: {
|
filters: {
|
||||||
|
|
Loading…
Reference in New Issue