refactor(admin): 테이블 타입 관리 Entity 조인 UI 레이아웃 개선

- Flexbox에서 Grid 레이아웃으로 변경 (160px 200px 250px 1fr)
- "상세 설정" 컬럼 제거하고 4개 컬럼 구조로 단순화
- Entity 조인 설정(참조/조인/표시 컬럼)을 입력 타입 컬럼 내 세로 배치
- Select 박스 너비를 192px (w-48)로 통일
- UI 겹침 현상 해결 및 순차적 설정 흐름 개선
This commit is contained in:
SeongHyun Kim
2025-11-27 12:22:39 +09:00
parent a1117092aa
commit 244c597ac9
2 changed files with 119 additions and 129 deletions

View File

@@ -734,7 +734,7 @@ export const TextInputComponent: React.FC<TextInputComponentProps> = ({
? "전화번호 형식: 010-1234-5678"
: isManualMode
? `${component.label} (수동 입력 모드 - 채번 규칙 미적용)`
: component.label
: component.label
? `${component.label}${component.columnName ? ` (${component.columnName})` : ""}`
: component.columnName || undefined
}