summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/core
diff options
context:
space:
mode:
authorTao Shen <shentao@chinamobile.com>2019-12-09 07:06:00 +0000
committerGerrit Code Review <gerrit@onap.org>2019-12-09 07:06:00 +0000
commit6a253751b055f4b9ece51d58b94880ce14f22e83 (patch)
tree0edf4f3275f858833f5aba981f9f6bf6b7b3e119 /usecaseui-portal/src/app/core
parent0b0f8e4644bdfc110558d055ca2e01b878809b5c (diff)
parent71934f9ecfedbe856da16bfcc28e30c658cad616 (diff)
Merge "feat: Optimize the selection box logic of the task processing component"
Diffstat (limited to 'usecaseui-portal/src/app/core')
-rw-r--r--usecaseui-portal/src/app/core/services/slicingTaskServices.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/usecaseui-portal/src/app/core/services/slicingTaskServices.ts b/usecaseui-portal/src/app/core/services/slicingTaskServices.ts
index 852dbf09..b11eeba5 100644
--- a/usecaseui-portal/src/app/core/services/slicingTaskServices.ts
+++ b/usecaseui-portal/src/app/core/services/slicingTaskServices.ts
@@ -84,7 +84,7 @@ export class SlicingTaskServices {
getSubnetInContext (context: string, pageNo: string, pageSize: string) {
const url = this.url.subnetInContext
.replace('{environmentContext}', context)
- .replace('{pageNo', pageNo)
+ .replace('{pageNo}', pageNo)
.replace('{pageSize}', pageSize);
return this.http.get<any>(url);
}