@nuskin/product-components 3.19.0 → 3.19.1-pa-933.1
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/.releaserc +1 -1
- package/docs/CHANGELOG.md +1 -1
- package/package.json +1 -1
- package/services/NsProductDataService.js +2 -1
package/.releaserc
CHANGED
package/docs/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
## [3.19.1-pa-933.1](https://code.tls.nuskin.io/ns-am/ux/product-components/compare/v3.19.0...v3.19.1-pa-933.1) (2025-11-05)
|
package/package.json
CHANGED
|
@@ -278,7 +278,8 @@ if (!NsProductDataService) {
|
|
|
278
278
|
const productsToSaveToSession = [];
|
|
279
279
|
for (const product of productData.products) {
|
|
280
280
|
// do a last quick check to make sure we don't add duplicate products
|
|
281
|
-
product.
|
|
281
|
+
const eventNames = product.eventName ? [product.eventName] : null;
|
|
282
|
+
product.setPriceAndPvFromType(this.getPriceType(), eventNames, {
|
|
282
283
|
isEqPromotion: equinoxMarketConfig.active
|
|
283
284
|
});
|
|
284
285
|
this.products.push(product);
|