@nuskin/ns-product-lib 2.6.1-cx24-3607.3 → 2.6.1
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +14 -0
- package/package.json +1 -1
- package/src/productData.js +2 -2
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
## [2.6.1](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.0...v2.6.1) (2023-03-16)
|
2
|
+
|
3
|
+
|
4
|
+
### Fix
|
5
|
+
|
6
|
+
* (equinox-enabled) skip product mapping when an error occurs in PLP #CX24-3607 ([454eaf3](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/454eaf3b899e27f1feaeda383553eb13dcb8b205)), closes [#CX24-3607](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/issues/CX24-3607)
|
7
|
+
|
8
|
+
## [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)
|
9
|
+
|
10
|
+
|
11
|
+
### Fix
|
12
|
+
|
13
|
+
* The variant drop down label ([3e6b9f5](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/3e6b9f5e422b71c3e5f73d5a62f0491343ed7afb))
|
14
|
+
|
1
15
|
## [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
16
|
|
3
17
|
|
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,
|