Skip to content

Commit

Permalink
fix(admin-ui): Fix low limit of facet value selector component
Browse files Browse the repository at this point in the history
Relates to #2251
  • Loading branch information
michaelbromley committed Jul 4, 2023
1 parent 3f82822 commit 1b13e7a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)),
Expand All @@ -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);
}),
)
Expand Down

0 comments on commit 1b13e7a

Please sign in to comment.