From c8be3960a0e54d664e99accc364896a7108cce03 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Sat, 1 Apr 2017 10:01:54 +0100 Subject: [PATCH] style(aio): fix minor syntax error --- aio/src/app/app.component.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 );