summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/ccvpn-network/ccvpn-network.component.ts
diff options
context:
space:
mode:
authorTao Shen <shentao@chinamobile.com>2019-09-12 09:45:54 +0000
committerGerrit Code Review <gerrit@onap.org>2019-09-12 09:45:54 +0000
commite22274d42e8fa9eb96fb38aee46b847812b2e400 (patch)
treec306eb9bdf23d364a80342590284a246bc74c612 /usecaseui-portal/src/app/views/ccvpn-network/ccvpn-network.component.ts
parentffd6d1e39c36a2133d329b975d5fe588bba36d35 (diff)
parenteb2d8b5118d13398eb57ef10d68b6ec595bc1989 (diff)
Merge "feat:optimize topo api & mock json for network service page"
Diffstat (limited to 'usecaseui-portal/src/app/views/ccvpn-network/ccvpn-network.component.ts')
-rw-r--r--usecaseui-portal/src/app/views/ccvpn-network/ccvpn-network.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/usecaseui-portal/src/app/views/ccvpn-network/ccvpn-network.component.ts b/usecaseui-portal/src/app/views/ccvpn-network/ccvpn-network.component.ts
index d02149d0..a2f9561c 100644
--- a/usecaseui-portal/src/app/views/ccvpn-network/ccvpn-network.component.ts
+++ b/usecaseui-portal/src/app/views/ccvpn-network/ccvpn-network.component.ts
@@ -688,7 +688,7 @@ export class CcvpnNetworkComponent implements OnInit {
let params = {
pnfName: this.selectedNode1,
};
- this.myhttp.getPInterfacesData1(params)
+ this.myhttp.getPInterfacesData(params)
.subscribe((data) => {
this.tpOption1 = [];
for (let i = 0; i < data.length; i++) {
@@ -716,7 +716,7 @@ export class CcvpnNetworkComponent implements OnInit {
let params = {
pnfName: this.selectedNode2,
};
- this.myhttp.getPInterfacesData2(params)
+ this.myhttp.getPInterfacesData(params)
.subscribe((data) => {
this.tpOption2 = [];
for (let i = 0; i < data.length; i++) {