#2035 Filter Overlay schließt nicht automatisch nach Suche

This commit is contained in:
Lorenz Hilpert
2021-07-28 17:35:03 +02:00
parent a703be64fc
commit cfea1a916c

View File

@@ -128,14 +128,13 @@ export class ArticleSearchService extends ComponentStore<ArticleSearchState> {
searchState,
});
}
this.searchCompleted.next(this.get());
},
(err) => {
this.patchState({ hits: 0, searchState: 'error', items: [] });
this.searchCompleted.next(this.get());
}
),
tap((_) => {
this.searchCompleted.next(this.get());
})
)
)
)
)