Skip to content

Commit

Permalink
fix: display product labels on search result pages (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
suschneider authored Feb 28, 2020
1 parent 09d66f4 commit 0062272
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/app/core/services/products/products.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ export class ProductsService {
.set('amount', this.itemsPerPage.toString())
.set('offset', ((page - 1) * this.itemsPerPage).toString())
.set('attrs', ProductsService.STUB_ATTRS)
.set('attributeGroup', AttributeGroupTypes.ProductLabelAttributes)
.set('returnSortKeys', 'true');
if (sortKey) {
params = params.set('sortKey', sortKey);
Expand Down

0 comments on commit 0062272

Please sign in to comment.