From 20e5d13525b59266da6558f22e0853533c488d44 Mon Sep 17 00:00:00 2001 From: zhangab Date: Tue, 25 Dec 2018 14:54:50 +0800 Subject: Fix VNF Alarm Query Bugs Change-Id: I8fb88ed5845d0edbad6a7e70958557cd9cffe866 Issue-ID: USECASEUI-164 Signed-off-by: zhangab --- usecaseui-portal/src/app/components/details/details.component.ts | 4 ++-- .../src/app/components/graphiclist/graphiclist.component.ts | 4 ++-- .../components/performance-details/performance-details.component.ts | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'usecaseui-portal/src/app/components') diff --git a/usecaseui-portal/src/app/components/details/details.component.ts b/usecaseui-portal/src/app/components/details/details.component.ts index 19da9e66..bc6b3246 100644 --- a/usecaseui-portal/src/app/components/details/details.component.ts +++ b/usecaseui-portal/src/app/components/details/details.component.ts @@ -1,6 +1,6 @@ import { Component, OnInit, Input } from '@angular/core'; import { slideUpDown } from '../../animates'; -import { MyhttpService } from '../../myhttp.service'; +import { HomesService } from '../../homes.service'; @Component({ selector: 'app-details', @@ -10,7 +10,7 @@ import { MyhttpService } from '../../myhttp.service'; }) export class DetailsComponent implements OnInit { - constructor(private myhttp:MyhttpService) { } + constructor(private myhttp:HomesService) { } ngOnInit() { } diff --git a/usecaseui-portal/src/app/components/graphiclist/graphiclist.component.ts b/usecaseui-portal/src/app/components/graphiclist/graphiclist.component.ts index 01e716db..712f2f9e 100644 --- a/usecaseui-portal/src/app/components/graphiclist/graphiclist.component.ts +++ b/usecaseui-portal/src/app/components/graphiclist/graphiclist.component.ts @@ -14,7 +14,7 @@ limitations under the License. */ import { Component, OnInit, Input, Output, EventEmitter, HostBinding } from '@angular/core'; -import { MyhttpService } from '../../myhttp.service'; +import { HomesService } from '../../homes.service'; import * as addDays from 'date-fns/add_days'; import { DatePipe } from "@angular/common" @@ -31,7 +31,7 @@ export class GraphiclistComponent implements OnInit { public pageSize: number = 10; list: any; constructor( private datePipe: DatePipe, - private myhttp: MyhttpService) { } + private myhttp: HomesService) { } isVisibleMiddle = false; showModalMiddle(): void { diff --git a/usecaseui-portal/src/app/components/performance-details/performance-details.component.ts b/usecaseui-portal/src/app/components/performance-details/performance-details.component.ts index 83467172..2b5cded5 100644 --- a/usecaseui-portal/src/app/components/performance-details/performance-details.component.ts +++ b/usecaseui-portal/src/app/components/performance-details/performance-details.component.ts @@ -1,6 +1,6 @@ import { Component, OnInit, Input } from '@angular/core'; import { slideUpDown } from '../../animates'; -import { MyhttpService } from '../../myhttp.service'; +import { HomesService } from '../../homes.service'; @Component({ selector: 'app-performance-details', @@ -11,7 +11,7 @@ import { MyhttpService } from '../../myhttp.service'; export class PerformanceDetailsComponent implements OnInit { - constructor(private myhttp:MyhttpService) { } + constructor(private myhttp:HomesService) { } ngOnInit() { -- cgit 1.2.3-korg