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