From b348a7df8913b54b0fe26085a8437df030707e52 Mon Sep 17 00:00:00 2001 From: Konstantinos Triantafyllou Date: Sun, 11 Oct 2020 14:19:54 +0000 Subject: [PATCH] [Graph | Trunk]: App component change title git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-graph-portal/trunk@59551 d315682c-612b-4755-9ff5-7f18f6832af3 --- src/app/app.component.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 0bc3a93..bbb6a78 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -11,7 +11,7 @@ import {LayoutService} from './services/layout.service'; }) export class AppComponent implements OnInit { - title = 'OpenAIRE Research Graph'; + title = 'OpenAIRE - Research Graph'; userMenuItems: MenuItem[] = []; menuItems: RootMenuItem [] = []; logInUrl = null; @@ -19,7 +19,6 @@ export class AppComponent implements OnInit { properties: EnvProperties = properties; showMenu: boolean = false; user: User; - isHome: boolean; constructor(private layoutService: LayoutService) {} @@ -28,7 +27,6 @@ export class AppComponent implements OnInit { this.logOutUrl = this.properties.logoutUrl; this.showMenu = true; this.layoutService.isHome.subscribe(isHome => { - this.isHome = isHome; this.buildMenu(isHome); }); }