From 3a93e0736625bd61ec4b114148180cd19b583f6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Popovics=20Andr=C3=A1s?= Date: Tue, 19 Feb 2019 21:14:40 +0100 Subject: [PATCH] Fix wrong types which prevents other apps to build upon local copies of it (#4335) --- lib/core/services/people-process.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) );