diff --git a/LittleShop/wwwroot/js/product-variants.js b/LittleShop/wwwroot/js/product-variants.js index 106b9c5..b39ec63 100644 --- a/LittleShop/wwwroot/js/product-variants.js +++ b/LittleShop/wwwroot/js/product-variants.js @@ -331,7 +331,7 @@ class ProductVariantsManager { }).join(''); const variantLabel = Object.entries(variantData) - .filter(([k, v]) => v !== null && k !== 'Label' && k !== 'StockQty' && k !== 'Weight' && k !== 'WeightUnit') + .filter(([k, v]) => v !== null && k !== 'Label' && k !== 'Price' && k !== 'StockQty' && k !== 'Weight' && k !== 'WeightUnit') .map(([k, v]) => v) .join(' / '); @@ -369,12 +369,21 @@ class ProductVariantsManager {