오류난것들 해결 완료

This commit is contained in:
leeheejin
2025-10-20 11:52:23 +09:00
parent 66a8196411
commit ff58c84ac0
6 changed files with 91 additions and 31 deletions

View File

@@ -82,6 +82,14 @@ function renderWidget(element: DashboardElement) {
return <ListWidget element={element} />;
case "yard-management-3d":
console.log("🏗️ 야드관리 위젯 렌더링:", {
elementId: element.id,
yardConfig: element.yardConfig,
yardConfigType: typeof element.yardConfig,
hasLayoutId: !!element.yardConfig?.layoutId,
layoutId: element.yardConfig?.layoutId,
layoutName: element.yardConfig?.layoutName,
});
return <YardManagement3DWidget isEditMode={false} config={element.yardConfig} />;
// === 차량 관련 (추가 위젯) ===