From e547d139260ffc6b5fa641b32697cbb761c0ac64 Mon Sep 17 00:00:00 2001 From: "pong.promrat" Date: Fri, 31 Oct 2025 12:03:41 +0700 Subject: [PATCH] *Fix display of the interface builder page - https://github.com/CruGlobal/gsdev_planning/issues/621 --- .../Designer/ui_work_interface_workspace_editor_layout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rootPages/Designer/ui_work_interface_workspace_editor_layout.js b/src/rootPages/Designer/ui_work_interface_workspace_editor_layout.js index 6bdefd9..0c5023a 100644 --- a/src/rootPages/Designer/ui_work_interface_workspace_editor_layout.js +++ b/src/rootPages/Designer/ui_work_interface_workspace_editor_layout.js @@ -261,7 +261,7 @@ export default function (AB) { editorUI.id = `${ids.editArea}_dashboard_layout`; // clear out widgets in our dashboard area - const idDashboard = editorUI.rows[0].id; + const idDashboard = (editorUI.rows?.[0] ?? editorUI).id; const $dashboard = $$(idDashboard); if ($dashboard) $dashboard.clearAll();