@infrab4a/connect-angular 4.13.2-beta.4 → 4.13.2
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 +2 -3
- package/fesm2015/infrab4a-connect-angular.mjs +1 -2
- package/fesm2015/infrab4a-connect-angular.mjs.map +1 -1
- package/fesm2020/infrab4a-connect-angular.mjs +1 -2
- package/fesm2020/infrab4a-connect-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/services/catalog/catalog.service.d.ts +0 -1
|
@@ -1713,7 +1713,6 @@ class CatalogService {
|
|
|
1713
1713
|
this.shop = shop;
|
|
1714
1714
|
this.productSearch = productSearch;
|
|
1715
1715
|
this.productsByTerm = {};
|
|
1716
|
-
this.lastListBrands = [];
|
|
1717
1716
|
this.buildFilterQuery = ({ clubDiscount, brands, prices, gender, tags, rate, customOptions, }) => {
|
|
1718
1717
|
const filters = {};
|
|
1719
1718
|
if (clubDiscount?.length)
|
|
@@ -1785,7 +1784,7 @@ class CatalogService {
|
|
|
1785
1784
|
max: +maximum?.price?.subscriberPrice?.toFixed(2),
|
|
1786
1785
|
},
|
|
1787
1786
|
},
|
|
1788
|
-
brands:
|
|
1787
|
+
brands: distinct?.brand,
|
|
1789
1788
|
}));
|
|
1790
1789
|
}
|
|
1791
1790
|
async addCustomerToStockNotification(shop, productId, name, email) {
|