From b2b4c24300ae6c929ee1996b23b1277fc66498cf Mon Sep 17 00:00:00 2001 From: Sri Balaji Marripud Date: Tue, 11 Aug 2020 17:09:19 -0400 Subject: Internationalization code Issue-ID: PORTAL-975 Change-Id: I4d4e25b883f36ee6ee1e16d98e75773636b1ee5b Signed-off-by: Sri Balaji Marripud --- .../src/app/layout/components/tabbar/tabbar.component.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'portal-FE-common/src/app/layout/components/tabbar/tabbar.component.spec.ts') diff --git a/portal-FE-common/src/app/layout/components/tabbar/tabbar.component.spec.ts b/portal-FE-common/src/app/layout/components/tabbar/tabbar.component.spec.ts index 066d73ff..37a7e912 100644 --- a/portal-FE-common/src/app/layout/components/tabbar/tabbar.component.spec.ts +++ b/portal-FE-common/src/app/layout/components/tabbar/tabbar.component.spec.ts @@ -40,7 +40,7 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { TabbarComponent } from './tabbar.component'; import { NgMaterialModule } from 'src/app/ng-material-module'; -import { Component } from '@angular/core'; +import { Component, Input } from '@angular/core'; import { ElipsisPipe } from 'src/app/shared/pipes/elipsis/elipsis.pipe'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { HttpClientTestingModule} from '@angular/common/http/testing'; @@ -69,7 +69,7 @@ describe('TabbarComponent', () => { }); @Component({selector: 'app-sidebar', template: ''}) -class AppSideBarStubComponent {} +class AppSideBarStubComponent {@Input() langFromTab:string;} @Component({selector: 'router-outlet', template: ''}) class RouterOutletStubComponent { } -- cgit 1.2.3-korg