Skip to content

Commit 7b8ab14

Browse files
Update api.service.ts
Removed the 'a' appended with the InstanceId.
1 parent 955b9bd commit 7b8ab14

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)