Fixed #977 - PrimeVue DataTable bug
parent
f30836c189
commit
7e2888012b
|
@ -525,9 +525,6 @@ export default {
|
|||
this.d_multiSortMeta = [...this.d_multiSortMeta];
|
||||
},
|
||||
filter(data) {
|
||||
this.d_first = 0;
|
||||
this.$emit('update:first', this.d_first);
|
||||
|
||||
if (!data) {
|
||||
return;
|
||||
}
|
||||
|
@ -1542,6 +1539,8 @@ export default {
|
|||
this.d_filters = filters;
|
||||
},
|
||||
onFilterApply() {
|
||||
this.d_first = 0;
|
||||
this.$emit('update:first', this.d_first);
|
||||
this.$emit('update:filters', this.d_filters);
|
||||
},
|
||||
cloneFilters() {
|
||||
|
|
Loading…
Reference in New Issue