@nuskin/ns-product-lib 2.6.0-cx24-3377.14 → 2.6.0-cx24-3377.15
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/productData.js +2 -2
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
# [2.6.0-cx24-3377.15](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.0-cx24-3377.14...v2.6.0-cx24-3377.15) (2023-03-10)
|
2
|
+
|
3
|
+
|
4
|
+
### New
|
5
|
+
|
6
|
+
* Fix multiple variants not loading properly (CX24-3377) ([5a2bf99](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/5a2bf996f7768baf5a7fe521786dbad0992f2b3e))
|
7
|
+
|
1
8
|
# [2.6.0-cx24-3377.14](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.0-cx24-3377.13...v2.6.0-cx24-3377.14) (2023-03-10)
|
2
9
|
|
3
10
|
|
package/package.json
CHANGED
package/src/productData.js
CHANGED
@@ -417,9 +417,9 @@ const ProductData = {
|
|
417
417
|
"shade": "",
|
418
418
|
"status": this.switchStatusFromEquinox(data.sku[count].properties.productStatus),
|
419
419
|
"variantType": "Other",
|
420
|
-
"variantDropdownLabel": data.sku[count].properties.
|
420
|
+
"variantDropdownLabel": data.sku[count].properties.variantSelectLabel || "",
|
421
421
|
"variantDropdownPlaceholder": "Select Type",
|
422
|
-
"variantsLabel": data.sku[count].properties.
|
422
|
+
"variantsLabel": data.sku[count].properties.variantSelectLabel || "",
|
423
423
|
"groupOffer": false,
|
424
424
|
"personalOffer": false,
|
425
425
|
"savedEventName": eventName,
|