mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
Fixed #4337 - DataTable: editingRows is not reactive
This commit is contained in:
parent
bb12c9e724
commit
12ec288a80
1 changed files with 6 additions and 3 deletions
|
@ -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: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue