From cbb16388fed79d77974c8d93c3f4e521884b00de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Sat, 7 Feb 2026 03:53:07 +0900 Subject: [PATCH] =?UTF-8?q?fix:=EC=9E=91=EC=97=85=EC=9E=90=20=ED=99=94?= =?UTF-8?q?=EB=A9=B4=20=EC=9E=90=EC=9E=AC=ED=88=AC=EC=9E=85=20=EB=85=B8?= =?UTF-8?q?=EB=93=9C=20ID=20=EB=A7=A4=EC=B9=AD=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/production/WorkerScreen/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/production/WorkerScreen/index.tsx b/src/components/production/WorkerScreen/index.tsx index 61922aa5..32712df5 100644 --- a/src/components/production/WorkerScreen/index.tsx +++ b/src/components/production/WorkerScreen/index.tsx @@ -645,7 +645,7 @@ export default function WorkerScreen() { (itemId: string, step: WorkStepData) => { if (step.isMaterialInput) { // 자재투입 → 자재 투입 모달 열기 - const order = workOrders.find((o) => o.id === itemId); + const order = workOrders.find((o) => o.id === itemId || itemId.startsWith(`${o.id}-node-`)); if (order) { setSelectedOrder(order); setIsMaterialModalOpen(true);