From 12ec288a80c782d94bdbdd0112a75c2fff3f365a Mon Sep 17 00:00:00 2001 From: NikoGJ <18424051+NikoGJ@users.noreply.github.com> Date: Mon, 28 Aug 2023 23:38:20 +0200 Subject: [PATCH] Fixed #4337 - DataTable: editingRows is not reactive --- components/lib/datatable/DataTable.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/components/lib/datatable/DataTable.vue b/components/lib/datatable/DataTable.vue index 96c47d196..dbe2b2251 100755 --- a/components/lib/datatable/DataTable.vue +++ b/components/lib/datatable/DataTable.vue @@ -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: {