diff --git a/extensions/arc/src/ui/components/dashboardPage.ts b/extensions/arc/src/ui/components/dashboardPage.ts index c335166953..96932e2f01 100644 --- a/extensions/arc/src/ui/components/dashboardPage.ts +++ b/extensions/arc/src/ui/components/dashboardPage.ts @@ -26,8 +26,9 @@ export abstract class DashboardPage extends InitializingComponent { title: this.title, id: this.id, icon: this.icon, - content: this.container, - toolbar: this.toolbarContainer + // Get toolbar first since things in the container might depend on these being created + toolbar: this.toolbarContainer, + content: this.container }; }