@infrab4a/connect-angular 5.2.1-beta.5 → 5.2.1-beta.6
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/strategies/term-search.strategy.mjs +4 -4
- package/fesm2015/infrab4a-connect-angular.mjs +3 -3
- package/fesm2015/infrab4a-connect-angular.mjs.map +1 -1
- package/fesm2020/infrab4a-connect-angular.mjs +3 -3
- package/fesm2020/infrab4a-connect-angular.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1744,9 +1744,9 @@ class TermSearchStrategy {
|
|
|
1744
1744
|
.slice(limits.offset, limits.offset + limits.limit);
|
|
1745
1745
|
console.log('limitedProductId', limitedProductId);
|
|
1746
1746
|
// const orderedId = productIds.filter((product) => limitedProductId.includes(product))
|
|
1747
|
-
const orderedId = productIds.filter((product) => limitedProductId.some((p) => p === product))
|
|
1748
|
-
console.log('orderedId', orderedId)
|
|
1749
|
-
return this.getDetailedProducts(
|
|
1747
|
+
// const orderedId = productIds.filter((product) => limitedProductId.some((p) => p === product))
|
|
1748
|
+
// console.log('orderedId', orderedId)
|
|
1749
|
+
return this.getDetailedProducts(limitedProductId, totalResult, fieldsHelper);
|
|
1750
1750
|
}
|
|
1751
1751
|
async getDetailedProducts(orderedId, totalResult, fieldsHelper) {
|
|
1752
1752
|
const productCatalog = this.repositoryService.getProductCatalog();
|