diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-10-11 16:51:21 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-10-11 16:51:21 +0700 |
| commit | 46efc6f8113b3e3deb3a011806ce92b6475c7673 (patch) | |
| tree | 6c194baaeb447e2fc3b8caf097112a5cfbd4bdd6 /src/core/components/elements | |
| parent | 5a2cc16003e1fbd6a31e24388f6471c9dd7e062d (diff) | |
| parent | 80295b97150495f56bd236a5345c2ddeb8313267 (diff) | |
Merge branch 'CR/breadcrumb' into development
Diffstat (limited to 'src/core/components/elements')
| -rw-r--r-- | src/core/components/elements/Product/cartProductsList.jsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/components/elements/Product/cartProductsList.jsx b/src/core/components/elements/Product/cartProductsList.jsx index 32df992b..9662cd3b 100644 --- a/src/core/components/elements/Product/cartProductsList.jsx +++ b/src/core/components/elements/Product/cartProductsList.jsx @@ -15,7 +15,6 @@ const CardProdcuctsList = ({ updateQuantity = () => {}, setDeleteConfirmation = () => {} }) => { - return ( <table className='table-cart'> <thead> @@ -144,7 +143,9 @@ const CardProdcuctsList = ({ {product?.code}{' '} {product?.attributes.length > 0 ? `| ${product?.attributes.join(', ')}` : ''} </div> - <div className='text-gray_r-11 mt-2'>Berat item : {product?.weight} Kg</div> + <div className='text-gray_r-11 mt-2'> + Berat item : {product?.weight} Kg x {product?.quantity} Barang + </div> </div> </td> <td className='relative'> |
