Start with navigation expanded

This commit is contained in:
Jake McDermott 2020-09-08 13:31:39 -04:00
parent 328b270c9f
commit 59ecefb1c5
No known key found for this signature in database
GPG Key ID: 0E56ED990CDFCB4F

View File

@ -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.