From 350034cbb1784c200b7df5c26c393e97007247bd Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Thu, 4 Feb 2021 15:53:29 -0800 Subject: [PATCH] Fix arc dashboard component order error (#14164) --- extensions/arc/src/ui/components/dashboardPage.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 }; }