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