반응형 및 테이블 리스트 컴포넌트 오류 수정
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user