@infrab4a/connect-angular 4.3.12-beta.12 → 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.
- package/esm2020/services/catalog/catalog.service.mjs +4 -4
- package/fesm2015/infrab4a-connect-angular.mjs +2 -2
- package/fesm2015/infrab4a-connect-angular.mjs.map +1 -1
- package/fesm2020/infrab4a-connect-angular.mjs +2 -2
- package/fesm2020/infrab4a-connect-angular.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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: '
|
|
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: '
|
|
1634
|
+
return { rate: 'desc_nulls_last' };
|
|
1635
1635
|
if (sort === 'news')
|
|
1636
1636
|
return { createdAt: 'desc' };
|
|
1637
1637
|
if (sort === 'biggest-discount')
|