@nuskin/ns-shop 7.9.0-mdigi-6056.4 → 7.9.0
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/package.json +2 -2
- package/src/cart/cartItem.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuskin/ns-shop",
|
|
3
|
-
"version": "7.9.0
|
|
3
|
+
"version": "7.9.0",
|
|
4
4
|
"description": "The description that will amaze and astound your audience when they read it",
|
|
5
5
|
"main": "src/shop.js",
|
|
6
6
|
"scripts": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@nuskin/ns-common-lib": "1.4.8",
|
|
27
27
|
"@nuskin/ns-feature-flags": "1.5.0",
|
|
28
28
|
"@nuskin/ns-loyalty-web": "1.5.7",
|
|
29
|
-
"@nuskin/ns-product-lib": "2.
|
|
29
|
+
"@nuskin/ns-product-lib": "2.21.1",
|
|
30
30
|
"@nuskin/nuskinjquery": "2.3.1",
|
|
31
31
|
"@nuskin/order-model": "3.1.3",
|
|
32
32
|
"@nuskin/product-lib": "2.4.0",
|
package/src/cart/cartItem.js
CHANGED
|
@@ -377,7 +377,7 @@ export default function CartItem(cartItemData) {
|
|
|
377
377
|
retVal.variants = this.product.variants;
|
|
378
378
|
retVal.marketAttributes = this.product.marketAttributes;
|
|
379
379
|
retVal.product_image_url = this.product.fullImage;
|
|
380
|
-
retVal.taxonomy =
|
|
380
|
+
retVal.taxonomy = 'all_products';
|
|
381
381
|
retVal.salesPrice = AccountManager.isLoggedIn()? this.salesPrice() : null;
|
|
382
382
|
retVal.unitPrice = AccountManager.isLoggedIn()? this.unitPrice() : null;
|
|
383
383
|
|