@nuskin/ns-product-lib 2.6.1-cx24-3607.3 → 2.6.1-cx24-3607.4
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.1-cx24-3607.4](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.1-cx24-3607.3...v2.6.1-cx24-3607.4) (2023-03-16)
|
2
|
+
|
3
|
+
|
4
|
+
### Fix
|
5
|
+
|
6
|
+
* The variant drop down label ([3e6b9f5](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/3e6b9f5e422b71c3e5f73d5a62f0491343ed7afb))
|
7
|
+
|
1
8
|
## [2.6.1-cx24-3607.3](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.1-cx24-3607.2...v2.6.1-cx24-3607.3) (2023-03-16)
|
2
9
|
|
3
10
|
|
package/package.json
CHANGED
package/src/productData.js
CHANGED
@@ -277,9 +277,9 @@ const ProductData = {
|
|
277
277
|
"shade": "",
|
278
278
|
"status": this.switchStatusFromEquinox(eqVariant.properties.status),
|
279
279
|
"variantType": "Other",
|
280
|
-
"variantDropdownLabel": eqVariant.properties.
|
280
|
+
"variantDropdownLabel": eqVariant.properties.variantLabel || "",
|
281
281
|
"variantDropdownPlaceholder": "Select Type",
|
282
|
-
"variantsLabel": eqVariant.properties.
|
282
|
+
"variantsLabel": eqVariant.properties.variantLabel || "",
|
283
283
|
"groupOffer": false,
|
284
284
|
"personalOffer": false,
|
285
285
|
"savedEventName": eventName,
|