Skip to content

Commit

Permalink
Fix #1568 (#1569)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ingvord authored Aug 28, 2024
1 parent 79b8174 commit 7d5457b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/shared/modules/filters/pid-filter.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class PidFilterComponent
) {
super();
this.subscription = this.pidSubject
.pipe(debounceTime(500), distinctUntilChanged())
.pipe(debounceTime(500))
.subscribe((pid) => {
const condition = !pid ? "" : this.buildPidTermsCondition(pid);
this.store.dispatch(setPidTermsFilterAction({ pid: condition }));
Expand Down

0 comments on commit 7d5457b

Please sign in to comment.