From da7ee0c5d640083fcce8af38730c587c4fb15395 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Fri, 19 Mar 2021 19:18:21 +0200 Subject: Fixed height of pages that were the whole window height but were also below the navbar --- src/app/services/comment.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/app/services/comment.service.ts') diff --git a/src/app/services/comment.service.ts b/src/app/services/comment.service.ts index 29707ab..f299e82 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('Id', id.toString()) + params: new HttpParams().set('CommentId', id.toString()) }; return this._http.get(AppConstants.API_COMMENT_URL, options); } -- cgit v1.2.3