Skip to content

Commit f117a50

Browse files
authored
Merge pull request #90 from delphi-hub/feature/add_delete_instance
Update api.service.ts
2 parents a1af630 + 48f55f4 commit f117a50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/app/api/api/api.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ export class ApiService {
232232
if (idInstance === null || idInstance === undefined) {
233233
throw new Error('Required ID Instance parameter');
234234
} else {
235-
queryParam = queryParam.set('instanceID', <any>('a' + idInstance));
235+
queryParam = queryParam.set('instanceID', <any>idInstance);
236236
}
237237

238238
return this.commonConf(endpoint, queryParam, observe, reportProgress);

0 commit comments

Comments
 (0)