diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-19 19:32:23 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-19 19:32:23 +0200 |
| commit | 76530e277cff435c249cedeba18ff8e0a6272f0e (patch) | |
| tree | 56f7268cf60ff23b188d714273ad142302dd6825 /src/app | |
| parent | 69624c2a75f04375793d31203e63b8a1797749bf (diff) | |
| download | DevHive-Angular-76530e277cff435c249cedeba18ff8e0a6272f0e.tar DevHive-Angular-76530e277cff435c249cedeba18ff8e0a6272f0e.tar.gz DevHive-Angular-76530e277cff435c249cedeba18ff8e0a6272f0e.zip | |
Reverted a fix that shouldn't be done here
Diffstat (limited to 'src/app')
| -rw-r--r-- | src/app/services/comment.service.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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<object> { 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); } |
