From 69f6fe3f33d033ae1d43785dfd3f4b9ed8ee0588 Mon Sep 17 00:00:00 2001 From: cyuamber Date: Thu, 19 Dec 2019 17:20:51 +0800 Subject: fix: ifx bug of slicing management page Change-Id: Icad8d4d3e64cab01168e6621754ad43f0ed07ccd Issue-ID: USECASEUI-369 Signed-off-by: cyuamber --- .../nsi-management/nsi-model/nsi-model.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nsi-management') diff --git a/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nsi-management/nsi-model/nsi-model.component.ts b/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nsi-management/nsi-model/nsi-model.component.ts index c34787d9..569a018f 100644 --- a/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nsi-management/nsi-model/nsi-model.component.ts +++ b/usecaseui-portal/src/app/views/services/slicing-management/slicing-resource-management/nsi-management/nsi-model/nsi-model.component.ts @@ -24,9 +24,9 @@ export class NsiModelComponent implements OnInit { } getNsiDetail() { this.myhttp.getSlicingNsiDetail(this.nsiId).subscribe(res => { + this.isSpinning = false; const {result_header: {result_code}, result_body: {hosted_business_list,included_nssi_list} } = res; if (+result_code === 200) { - this.isSpinning = false; this.businessList = hosted_business_list; this.nssiList = included_nssi_list; } -- cgit 1.2.3-korg