From 76530e277cff435c249cedeba18ff8e0a6272f0e Mon Sep 17 00:00:00 2001 From: Syndamia Date: Fri, 19 Mar 2021 19:32:23 +0200 Subject: Reverted a fix that shouldn't be done here --- src/app/services/comment.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/app/services/comment.service.ts b/src/app/services/comment.service.ts index f299e82..29707ab 100644 --- a/src/app/services/comment.service.ts +++ b/src/app/services/comment.service.ts @@ -55,7 +55,7 @@ export class CommentService { getCommentRequest(id: Guid): Observable { const options = { - params: new HttpParams().set('CommentId', id.toString()) + params: new HttpParams().set('Id', id.toString()) }; return this._http.get(AppConstants.API_COMMENT_URL, options); } -- cgit v1.2.3