From 767c0316298f836e02d492a19787d62b625c798e Mon Sep 17 00:00:00 2001 From: kjs Date: Wed, 1 Oct 2025 17:18:06 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Select=20Item=20=EB=B9=88=20=EB=AC=B8?= =?UTF-8?q?=EC=9E=90=EC=97=B4=20value=20=EC=97=90=EB=9F=AC=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 문제: - SelectItem에 빈 문자열 value 전달 시 에러 - col.columnName이 빈 문자열일 수 있음 수정: - filter에 col.columnName 체크 추가 - 빈 문자열 컬럼 제외 에러 메시지: A must have a value prop that is not an empty string --- .../connection/redesigned/RightPanel/ControlConditionStep.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/components/dataflow/connection/redesigned/RightPanel/ControlConditionStep.tsx b/frontend/components/dataflow/connection/redesigned/RightPanel/ControlConditionStep.tsx index 4d6dcc4a..d4995b48 100644 --- a/frontend/components/dataflow/connection/redesigned/RightPanel/ControlConditionStep.tsx +++ b/frontend/components/dataflow/connection/redesigned/RightPanel/ControlConditionStep.tsx @@ -233,6 +233,7 @@ const ControlConditionStep: React.FC = ({ state, acti {[...fromColumns, ...toColumns] .filter( (col, index, array) => + col.columnName && // 빈 문자열 제외 array.findIndex((c) => c.columnName === col.columnName) === index, ) .map((col) => (