반응형 및 테이블 리스트 컴포넌트 오류 수정

This commit is contained in:
kjs
2025-10-17 15:31:23 +09:00
parent 54e9f45823
commit 2a8081a253
21 changed files with 886 additions and 262 deletions

View File

@@ -210,6 +210,12 @@ export class EnhancedFormService {
* 테이블 컬럼 정보 조회 (캐시 포함)
*/
private async getTableColumns(tableName: string): Promise<ColumnInfo[]> {
// tableName이 비어있으면 빈 배열 반환
if (!tableName || tableName.trim() === "") {
console.warn("⚠️ getTableColumns: tableName이 비어있음");
return [];
}
// 캐시 확인
const cached = this.columnCache.get(tableName);
if (cached) {