summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/core/services
diff options
context:
space:
mode:
authorcyuamber <xuranyjy@chinamobile.com>2019-12-09 12:11:36 +0800
committercyuamber <xuranyjy@chinamobile.com>2019-12-09 12:11:48 +0800
commit71934f9ecfedbe856da16bfcc28e30c658cad616 (patch)
tree56a55d5ed543634a3d2c4516a41a09731dc91cfa /usecaseui-portal/src/app/core/services
parent4abc9917d8d474b5bd3ba4f570e39e3e594de4b6 (diff)
feat: Optimize the selection box logic of the task processing component
Change-Id: Ic08e3f986f2d72ea2d90b7a80da57cf3ac4d25d2 Issue-ID: USECASEUI-368 Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/core/services')
-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 7c50e561..3f38a717 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);
}