필요없는 종류 정리 및 대시보드 이젠 렌더링 되고 모든 위젯들 이름 수정 가능하게 해달라고 했는데 지금은 데이터베이스 연결하는 것만 이름 변경이 됩니다.

This commit is contained in:
leeheejin
2025-10-15 18:25:16 +09:00
parent 4addf8dccf
commit 7e38f82d0c
15 changed files with 229 additions and 168 deletions

View File

@@ -349,7 +349,8 @@ export default function StatusSummaryWidget({
return name;
};
const displayTitle = tableName ? `${translateTableName(tableName)} 현황` : title;
// customTitle이 있으면 사용, 없으면 테이블명으로 자동 생성
const displayTitle = element.customTitle || (tableName ? `${translateTableName(tableName)} 현황` : title);
return (
<div className={`flex h-full w-full flex-col overflow-hidden bg-gradient-to-br ${bgGradient} p-2`}>