diff options
Diffstat (limited to 'usecaseui-portal/src/app/home')
-rw-r--r-- | usecaseui-portal/src/app/home/home.component.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usecaseui-portal/src/app/home/home.component.ts b/usecaseui-portal/src/app/home/home.component.ts index 5d91e357..093d67ae 100644 --- a/usecaseui-portal/src/app/home/home.component.ts +++ b/usecaseui-portal/src/app/home/home.component.ts @@ -1,5 +1,5 @@ import { Component, OnInit, Input, Output, EventEmitter, HostBinding } from '@angular/core'; -import { MyhttpService } from '../myhttp.service'; +import { HomesService } from '../homes.service'; import { slideToRight } from '../animates'; @Component({ @@ -11,7 +11,7 @@ import { slideToRight } from '../animates'; export class HomeComponent implements OnInit { @HostBinding('@routerAnimate') routerAnimateState; - constructor(private myhttp: MyhttpService) { } + constructor(private myhttp: HomesService) { } ngOnInit() { this.getSourceNames(); |