@infrab4a/connect-angular 4.3.12-beta.11 → 4.3.12-beta.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1625,13 +1625,13 @@ class CatalogService {
1625
1625
  if (!sort || sort === 'most-relevant')
1626
1626
  return {};
1627
1627
  if (sort === 'best-sellers')
1628
- return { shoppingCount: 'desc' };
1628
+ return { shoppingCount: 'desc_nulls_last' };
1629
1629
  if (sort === 'biggest-price')
1630
1630
  return { subscriberPrice: 'desc' };
1631
1631
  if (sort === 'lowest-price')
1632
1632
  return { subscriberPrice: 'asc' };
1633
1633
  if (sort === 'best-rating')
1634
- return { rate: 'desc' };
1634
+ return { rate: 'desc_nulls_last' };
1635
1635
  if (sort === 'news')
1636
1636
  return { createdAt: 'desc' };
1637
1637
  if (sort === 'biggest-discount')