Skip to content

Commit

Permalink
fix(module:table): remove table nzQueryParams debounceTime (#5132)
Browse files Browse the repository at this point in the history
close #5113
  • Loading branch information
Yadong Xie authored Apr 24, 2020
1 parent 7b3937e commit 07a9d34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/table/src/table-data.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class NzTableDataService implements OnDestroy {
this.pageSizeDistinct$,
this.listOfCalcOperator$
]).pipe(
debounceTime(300),
debounceTime(0),
skip(1),
map(([pageIndex, pageSize, listOfCalc]) => {
return {
Expand Down

0 comments on commit 07a9d34

Please sign in to comment.