Merge "Application start up issue is fixed"
[portal.git] / portal-FE-common / src / app / layout / layout.component.ts
index 3da4666..d74f84d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * ============LICENSE_START==========================================
- * ONAP Portal
+ * ONAP Portal SDK
  * ===================================================================
  * Copyright © 2019 AT&T Intellectual Property. All rights reserved.
  * ===================================================================
@@ -45,6 +45,8 @@ import { Component, OnInit } from '@angular/core';
 export class LayoutComponent implements OnInit {
 
     collapedSideBar: boolean;
+       language: string;
+
 
     constructor() {}
 
@@ -53,4 +55,8 @@ export class LayoutComponent implements OnInit {
     receiveCollapsed($event) {
         this.collapedSideBar = $event;
     }
+       
+       setLanguage(lang) {
+        this.language= lang;
+    }
 }