added and fixed minor details

This commit is contained in:
2026-05-30 00:02:55 +02:00
parent 1d7fb194fa
commit b435b5f638
6 changed files with 198 additions and 8 deletions
+1 -1
View File
@@ -280,7 +280,7 @@ export const InventoryPage = () => {
description: product?.description ?? "",
imageUrl: product?.picture ?? undefined,
price: product?.price ?? "-",
stock: `${product?.amount ?? 0} Stk.`,
stock: `${product?.amount ?? 0} ${t("pcs")}`,
location: product?.storage_location_name ?? "-",
locationDetail: "",
expiryDate: formatDate(product?.expiry_date),