Skip to content

Commit

Permalink
Fixed primefaces#4337 - DataTable: editingRows is not reactive
Browse files Browse the repository at this point in the history
  • Loading branch information
NikoGJ committed Aug 29, 2023
1 parent bb12c9e commit 12ec288
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions components/lib/datatable/DataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down

0 comments on commit 12ec288

Please sign in to comment.