@nuskin/ns-product-lib 2.6.0-cx24-3377.1 → 2.6.0-cx24-3377.2
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/product.js +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
# [2.6.0-cx24-3377.2](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.6.0-cx24-3377.1...v2.6.0-cx24-3377.2) (2023-03-08)
|
2
|
+
|
3
|
+
|
4
|
+
### New
|
5
|
+
|
6
|
+
* Fix multiple variants not loading properly (CX24-3377) ([d3a2663](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/commit/d3a266319c8ff7b4650c9ef9a06f411b117d98d3))
|
7
|
+
|
1
8
|
# [2.6.0-cx24-3377.1](https://code.tls.nuskin.io/ns-am/product/js-libs/ns-product-lib/compare/v2.5.1...v2.6.0-cx24-3377.1) (2023-03-08)
|
2
9
|
|
3
10
|
|
package/package.json
CHANGED
package/src/product.js
CHANGED
@@ -552,7 +552,7 @@ const Product = function (productData) {
|
|
552
552
|
if (this.isBase(option)) {
|
553
553
|
for (const variantSku in this.variants) {
|
554
554
|
const variant = this.variants[variantSku];
|
555
|
-
variant.setBaseUrl(baseUrl);
|
555
|
+
variant.setBaseUrl(baseUrl, option);
|
556
556
|
}
|
557
557
|
}
|
558
558
|
};
|