Fix arc dashboard component order error (#14164)

This commit is contained in:
Charles Gagnon
2021-02-04 15:53:29 -08:00
committed by GitHub
parent c027ce4f00
commit 350034cbb1

View File

@@ -26,8 +26,9 @@ export abstract class DashboardPage extends InitializingComponent {
title: this.title, title: this.title,
id: this.id, id: this.id,
icon: this.icon, icon: this.icon,
content: this.container, // Get toolbar first since things in the container might depend on these being created
toolbar: this.toolbarContainer toolbar: this.toolbarContainer,
content: this.container
}; };
} }