From 59ecefb1c5d54fa707d91c366685bcb8dd8a59ef Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Tue, 8 Sep 2020 13:31:39 -0400 Subject: [PATCH] Start with navigation expanded --- awx/ui_next/src/components/AppContainer/NavExpandableGroup.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui_next/src/components/AppContainer/NavExpandableGroup.jsx b/awx/ui_next/src/components/AppContainer/NavExpandableGroup.jsx index 1ebbb7e9ae..9122a97272 100644 --- a/awx/ui_next/src/components/AppContainer/NavExpandableGroup.jsx +++ b/awx/ui_next/src/components/AppContainer/NavExpandableGroup.jsx @@ -7,7 +7,7 @@ class NavExpandableGroup extends Component { constructor(props) { super(props); const { routes } = this.props; - this.state = { isExpanded: false }; + this.state = { isExpanded: true }; // Extract a list of paths from the route params and store them for later. This creates // an array of url paths associated with any NavItem component rendered by this component.