Skip to content

Commit a408a54

Browse files
authored
Merge pull request #1003 from adlius/fix-search
feat(es2): Fix search
2 parents 527c175 + 876ee5f commit a408a54

2 files changed

Lines changed: 0 additions & 3 deletions

File tree

src/app/features/collections/components/collections-discover/collections-discover.component.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,6 @@ export class CollectionsDiscoverComponent {
179179

180180
private setupCollectionDetailsEffect(): void {
181181
effect(() => {
182-
if (this.useShareTroveSearch()) return;
183-
184182
const collectionId = this.primaryCollectionId();
185183
if (collectionId) {
186184
this.actions.getCollectionDetails(collectionId);

src/app/shared/components/search-input/search-input.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ export class SearchInputComponent {
2929
if (!searchValue || !searchValue?.trim()?.length) {
3030
return;
3131
}
32-
3332
this.triggerSearch.emit(searchValue);
3433
}
3534
}

0 commit comments

Comments
 (0)