diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-23 17:01:03 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-03-23 17:01:03 +0700 |
| commit | a49f5a3f968dcc8c84759a382a0762abf0bc758b (patch) | |
| tree | 15f9ee680ab8a9dbfbf2541c8b5f5ab50881ca72 /src/lib/product/components | |
| parent | d178a520534af7d1cbcc03134034ad8a2327b461 (diff) | |
cart, checkout, quotation
Diffstat (limited to 'src/lib/product/components')
| -rw-r--r-- | src/lib/product/components/Product/ProductDesktop.jsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/product/components/Product/ProductDesktop.jsx b/src/lib/product/components/Product/ProductDesktop.jsx index ac17ec6e..98b40400 100644 --- a/src/lib/product/components/Product/ProductDesktop.jsx +++ b/src/lib/product/components/Product/ProductDesktop.jsx @@ -154,6 +154,7 @@ const ProductDesktop = ({ product, wishlist, toggleWishlist }) => { <thead> <tr> <th>Part Number</th> + <th>Varian</th> <th>Harga</th> <th>Jumlah</th> <th>Action</th> @@ -163,6 +164,7 @@ const ProductDesktop = ({ product, wishlist, toggleWishlist }) => { {product.variants.map((variant) => ( <tr key={variant.id}> <td>{variant.code}</td> + <td>{variant.attributes.join(', ')}</td> <td> {variant.price.discountPercentage > 0 && ( <> |
