@ikas/storefront 0.0.158-alpha.12 → 0.0.158-alpha.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/build/index.es.js +1 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
package/build/index.es.js
CHANGED
|
@@ -21828,7 +21828,7 @@ var IkasProductList = /** @class */ (function () {
|
|
|
21828
21828
|
if (f.keyList.length)
|
|
21829
21829
|
queryParams[f.key] = f.keyList;
|
|
21830
21830
|
});
|
|
21831
|
-
if (this._searchKeyword)
|
|
21831
|
+
if (this._searchKeyword && !this.isSearch)
|
|
21832
21832
|
queryParams.s = this._searchKeyword;
|
|
21833
21833
|
if (this._infiniteScrollPage)
|
|
21834
21834
|
queryParams.page = this._infiniteScrollPage;
|
package/build/index.js
CHANGED
|
@@ -21811,7 +21811,7 @@ var IkasProductList = /** @class */ (function () {
|
|
|
21811
21811
|
if (f.keyList.length)
|
|
21812
21812
|
queryParams[f.key] = f.keyList;
|
|
21813
21813
|
});
|
|
21814
|
-
if (this._searchKeyword)
|
|
21814
|
+
if (this._searchKeyword && !this.isSearch)
|
|
21815
21815
|
queryParams.s = this._searchKeyword;
|
|
21816
21816
|
if (this._infiniteScrollPage)
|
|
21817
21817
|
queryParams.page = this._infiniteScrollPage;
|