Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -84,7 +84,7 @@ export class FacetValueSelectorComponent implements OnInit, OnDestroy, ControlVa
return of([]);
}
return this.dataService.facet
.getFacetValues({ take: 10, filter: { name: { contains: term } } })
.getFacetValues({ take: 100, filter: { name: { contains: term } } })
.mapSingle(result => result.facetValues.items);
}),
tap(() => (this.searchLoading = false)),
@@ -96,7 +96,7 @@ export class FacetValueSelectorComponent implements OnInit, OnDestroy, ControlVa
return of([]);
}
return this.dataService.facet
.getFacetValues({ take: 10, filter: { id: { in: ids } } }, 'cache-first')
.getFacetValues({ take: 100, filter: { id: { in: ids } } }, 'cache-first')
.mapSingle(result => result.facetValues.items);
}),
)

0 comments on commit 1b13e7a

Please sign in to comment.