diff --git a/lib/core/services/people-process.service.ts b/lib/core/services/people-process.service.ts index 94368e1ff5..5bcec3fc3f 100644 --- a/lib/core/services/people-process.service.ts +++ b/lib/core/services/people-process.service.ts @@ -63,7 +63,7 @@ export class PeopleProcessService { */ involveUserWithTask(taskId: string, idToInvolve: string): Observable { let node = {userId: idToInvolve}; - return from(this.involveUserToTaskApi(taskId, node)) + return from(this.involveUserToTaskApi(taskId, node)) .pipe( catchError((err) => this.handleError(err)) ); @@ -77,7 +77,7 @@ export class PeopleProcessService { */ removeInvolvedUser(taskId: string, idToRemove: string): Observable { let node = {userId: idToRemove}; - return from(this.removeInvolvedUserFromTaskApi(taskId, node)) + return from(this.removeInvolvedUserFromTaskApi(taskId, node)) .pipe( catchError((err) => this.handleError(err)) );