Merge pull request #4343 from NikoGJ/fix/4337

Fixed #4337 - DataTable: editingRows is not reactive
pull/4377/head
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
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: {