Fixed #4337 - DataTable: editingRows is not reactive

pull/4343/head
NikoGJ 2023-08-28 23:38:20 +02:00
parent bb12c9e724
commit 12ec288a80
1 changed files with 6 additions and 3 deletions

View File

@ -386,10 +386,13 @@ export default {
this.updateExpandedRowKeys(newValue); this.updateExpandedRowKeys(newValue);
} }
}, },
editingRows(newValue) { editingRows: {
deep: true,
handler(newValue) {
if (this.dataKey) { if (this.dataKey) {
this.updateEditingRowKeys(newValue); this.updateEditingRowKeys(newValue);
} }
}
}, },
filters: { filters: {
deep: true, deep: true,