Skip to content
Snippets Groups Projects
Commit 07be5228 authored by mechtelm's avatar mechtelm
Browse files

bugfix saveReport

parent 3802b5b3
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ export class BackendService {
saveReport(workspaceId: number, sysCheckName: string, sysCheckReport: SysCheckReport): Observable<boolean> {
return this.http
.put(this.serverUrl + `workspace/${workspaceId}/sys-check/${sysCheckName}/report`, {body: {...sysCheckReport}})
.put(this.serverUrl + `workspace/${workspaceId}/sys-check/${sysCheckName}/report`, {...sysCheckReport})
.pipe(
map(() => true),
catchError((err: ApiError) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment