diff --git a/frontend/components/dataflow/ConnectionSetupModal.tsx b/frontend/components/dataflow/ConnectionSetupModal.tsx index ab2c8d13..bcd1721a 100644 --- a/frontend/components/dataflow/ConnectionSetupModal.tsx +++ b/frontend/components/dataflow/ConnectionSetupModal.tsx @@ -641,6 +641,7 @@ export const ConnectionSetupModal: React.FC = ({ if (condition.type === "group-start") { return (
+ {/* 그룹 시작 앞의 논리 연산자 */} {condIndex > 0 && ( { @@ -938,7 +940,7 @@ export const ConnectionSetupModal: React.FC = ({ if (condition.type === "group-start") { return (
- {/* 이전 조건과의 논리 연산자 */} + {/* 그룹 시작 앞의 논리 연산자 */} {index > 0 && ( )} - {/* 그룹 레벨에 따른 들여쓰기 */}
= ({ // 일반 조건 렌더링 return (
- {/* 이전 조건과의 논리 연산자 */} - {index > 0 && ( + {/* 그룹 내 첫 번째 조건이 아닐 때만 논리 연산자 표시 */} + {index > 0 && conditions[index - 1]?.type !== "group-start" && (