diff options
author | cyuamber <xuranyjy@chinamobile.com> | 2019-12-20 12:19:50 +0800 |
---|---|---|
committer | cyuamber <xuranyjy@chinamobile.com> | 2019-12-20 12:19:55 +0800 |
commit | e2362aed3f00ae47ac30c5d084bd5092b49a7a2d (patch) | |
tree | 63e82decaf55d8c3813a92d1ca6728313ec8258b /usecaseui-portal/src/app/core | |
parent | 6b2c1c6071bc4a389859917ad2b2dece0b598046 (diff) |
fix: fix bugs of taskprogress interface
Change-Id: Ic8c37b6d5f1841da91c688baaac5bf57bc584899
Issue-ID: USECASEUI-368
Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/core')
-rw-r--r-- | usecaseui-portal/src/app/core/services/slicingTaskServices.ts | 2 |
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 a8873d99..a9ef2591 100644 --- a/usecaseui-portal/src/app/core/services/slicingTaskServices.ts +++ b/usecaseui-portal/src/app/core/services/slicingTaskServices.ts @@ -100,7 +100,7 @@ export class SlicingTaskServices { return this.http.get<any>(url);
}
getSlicingCreateProgress(taskId: string) {
- const url = this.url.slicingCreateProgress.replace('{taskId', taskId);
+ const url = this.url.slicingCreateProgress.replace('{taskId}', taskId);
return this.http.get<any>(url);
}
|