fix: TableListConfigPanel에 screenTableName 전달 누락 수정

- renderComponentConfigPanel에서 ConfigPanelComponent 호출 시 screenTableName과 tableColumns 전달 추가
- 이전 커밋(e2cc09b2)에서 renderComponentConfigPanel 로직 추가로 인한 회귀 버그 수정
- table-list 컴포넌트 설정 패널에서 컬럼 추가 기능 정상 작동
This commit is contained in:
kjs 2025-11-20 17:07:12 +09:00
parent e2cc09b2d6
commit d7db8cb07a
1 changed files with 2 additions and 0 deletions

View File

@ -323,6 +323,8 @@ export const UnifiedPropertiesPanel: React.FC<UnifiedPropertiesPanelProps> = ({
config={config}
onChange={handleConfigChange}
tables={tables} // 테이블 정보 전달
screenTableName={selectedComponent.tableName || currentTable?.tableName || currentTableName} // 🔧 화면 테이블명 전달
tableColumns={currentTable?.columns || []} // 🔧 테이블 컬럼 정보 전달
/>
</div>
);