diff --git a/src/components/PoSearch/PoSearch.tsx b/src/components/PoSearch/PoSearch.tsx index 797c126..9c7307f 100644 --- a/src/components/PoSearch/PoSearch.tsx +++ b/src/components/PoSearch/PoSearch.tsx @@ -142,14 +142,14 @@ const PoSearch: React.FC = ({ }, { name: "code", - label: `${t("PO No.")} &\n${t("Supplier")}`, + label: `${t("PO No.")} ${t("&")}\n${t("Supplier")}`, renderCell: (params) => { return <>{params.code}
{params.supplier} }, }, { name: "orderDate", - label: `${t("Order Date")} &\n${t("ETA")}`, + label: `${t("Order Date")} ${t("&")}\n${t("ETA")}`, renderCell: (params) => { // return ( // dayjs(params.estimatedArrivalDate) diff --git a/src/i18n/zh/purchaseOrder.json b/src/i18n/zh/purchaseOrder.json index 34fc35c..de1da99 100644 --- a/src/i18n/zh/purchaseOrder.json +++ b/src/i18n/zh/purchaseOrder.json @@ -156,5 +156,6 @@ "joCode": "工單編號", "salesUnit": "銷售單位", "download Qr Code": "下載QR碼", - "downloading": "下載中" + "downloading": "下載中", + "&": "及" }