From 0024a3687e75f6b746aebcbfaf2d7953fce3b05b Mon Sep 17 00:00:00 2001 From: Miqdad Date: Wed, 5 Nov 2025 11:02:08 +0700 Subject: cr renca manufacture logo --- .../product-detail/components/Information.tsx | 42 +++++++++++----------- .../product-detail/styles/information.module.css | 2 +- 2 files changed, 22 insertions(+), 22 deletions(-) (limited to 'src-migrate/modules') diff --git a/src-migrate/modules/product-detail/components/Information.tsx b/src-migrate/modules/product-detail/components/Information.tsx index fd73d8b6..d6959aa8 100644 --- a/src-migrate/modules/product-detail/components/Information.tsx +++ b/src-migrate/modules/product-detail/components/Information.tsx @@ -186,6 +186,27 @@ const Information = ({ product }: Props) => {
Item Code
{selectedVariant?.code}
+
+
Berat Barang
+
+ {selectedVariant?.weight > 0 ? `${selectedVariant?.weight} Kg` : '-'} +
+
+
+
Terjual
+
+ {product.qty_sold > 0 ? formatToShortText(product.qty_sold) : '-'} +
+
+
+
Persiapan Barang
+ {isLoading && ( +
+ +
+ )} + {!isLoading &&
{sla?.sla_date}
} +
Manufacture
@@ -216,27 +237,6 @@ const Information = ({ product }: Props) => { )}
-
-
Berat Barang
-
- {selectedVariant?.weight > 0 ? `${selectedVariant?.weight} Kg` : '-'} -
-
-
-
Terjual
-
- {product.qty_sold > 0 ? formatToShortText(product.qty_sold) : '-'} -
-
-
-
Persiapan Barang
- {isLoading && ( -
- -
- )} - {!isLoading &&
{sla?.sla_date}
} -
); }; diff --git a/src-migrate/modules/product-detail/styles/information.module.css b/src-migrate/modules/product-detail/styles/information.module.css index 5aa64fe5..b1a8b256 100644 --- a/src-migrate/modules/product-detail/styles/information.module.css +++ b/src-migrate/modules/product-detail/styles/information.module.css @@ -6,7 +6,7 @@ @apply flex p-4 rounded-sm bg-gray-100; } -.row:nth-child(odd) { +.row:nth-child(even) { @apply bg-white; } -- cgit v1.2.3