From 5245bb874cb83306dae25a0b2733b947848b61ba Mon Sep 17 00:00:00 2001 From: Daniel Haselhan Date: Tue, 28 May 2024 17:25:44 -0700 Subject: [PATCH] Update type filter to emit its cleared value --- .../file-type-filter-drop-down.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/portal-frontend/src/app/features/public/search/file-type-filter-drop-down/file-type-filter-drop-down.component.ts b/portal-frontend/src/app/features/public/search/file-type-filter-drop-down/file-type-filter-drop-down.component.ts index 765327d54..44bd08f6e 100644 --- a/portal-frontend/src/app/features/public/search/file-type-filter-drop-down/file-type-filter-drop-down.component.ts +++ b/portal-frontend/src/app/features/public/search/file-type-filter-drop-down/file-type-filter-drop-down.component.ts @@ -184,6 +184,7 @@ export class FileTypeFilterDropDownComponent implements AfterViewInit { reset() { this.componentTypeControl.reset(); this.checklistSelection.selected.forEach((selectedItem) => this.checklistSelection.deselect(selectedItem)); + this.onChange(); } ngAfterViewInit(): void {