diff --git a/aio/src/app/app.component.ts b/aio/src/app/app.component.ts index 5a6f0bd445..39b50c5cd6 100644 --- a/aio/src/app/app.component.ts +++ b/aio/src/app/app.component.ts @@ -81,9 +81,9 @@ export class AppComponent implements OnInit { }); this.navigationService.navigationViews.subscribe(views => { - this.footerNodes = views.Footer || []; - this.sideNavNodes = views.SideNav || []; - this.topMenuNodes = views.TopBar || []; + this.footerNodes = views['Footer'] || []; + this.sideNavNodes = views['SideNav'] || []; + this.topMenuNodes = views['TopBar'] || []; }); this.navigationService.versionInfo.subscribe( vi => this.versionInfo = vi );