Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
fix(quick-filter): Fixes a bug that didn't show any options when the …
Browse files Browse the repository at this point in the history
…view-more button was clicked.
  • Loading branch information
rowa-audil authored and lukasholzer committed Oct 21, 2020
1 parent 0573542 commit f96e3c5
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ export class DtQuickFilter<T = any> implements AfterViewInit, OnDestroy {
* to this function that will be dispatched to the store
*/
_changeFilter(action: Action): void {
this._virtualScrollHeight = this._getVirtualScrollContainerHeight();
this._store.dispatch(action);
if (isFilterChangeAction(action)) {
this.filterChanges.emit(
Expand Down

0 comments on commit f96e3c5

Please sign in to comment.