Merge pull request #4343 from NikoGJ/fix/4337

Fixed #4337 - DataTable: editingRows is not reactive
This commit is contained in:
Tuğçe Küçükoğlu 2023-09-01 10:51:06 +03:00 committed by GitHub
commit 9da4e1fe84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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