From 9b4db0dde571e1810c6d4fe29e8d8324d0690db0 Mon Sep 17 00:00:00 2001 From: "CANCERYS\\kw093" Date: Sat, 14 Mar 2026 17:35:56 +0800 Subject: [PATCH] update --- src/app/(main)/stocktakemanagement/page.tsx | 2 +- src/components/StockTakeManagement/PickerCardList.tsx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/(main)/stocktakemanagement/page.tsx b/src/app/(main)/stocktakemanagement/page.tsx index 252bdf4..1ed3fae 100644 --- a/src/app/(main)/stocktakemanagement/page.tsx +++ b/src/app/(main)/stocktakemanagement/page.tsx @@ -10,7 +10,7 @@ import { notFound } from "next/navigation"; export default async function InventoryManagementPage() { const { t } = await getServerI18n("inventory"); return ( - + }> diff --git a/src/components/StockTakeManagement/PickerCardList.tsx b/src/components/StockTakeManagement/PickerCardList.tsx index b5423a1..b405693 100644 --- a/src/components/StockTakeManagement/PickerCardList.tsx +++ b/src/components/StockTakeManagement/PickerCardList.tsx @@ -82,15 +82,15 @@ const filteredSessions = stockTakeSessions.filter((s) => { const criteria: Criterion[] = [ { type: "select", - label: "Stock Take Section Description", + label: t("Stock Take Section Description"), paramName: "sectionDescription", options: sectionDescriptionOptions, }, { type: "text", - label: "Stock Take Section", + label: t("Stock Take Section"), paramName: "stockTakeSession", - placeholder: "e.g. A01", + placeholder: "", }, ];