Fixed #4337 - DataTable: editingRows is not reactive

This commit is contained in:
NikoGJ 2023-08-28 23:38:20 +02:00
parent bb12c9e724
commit 12ec288a80

View file

@ -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: {