diff --git a/src/app/components/moderator/moderator-comment-list/moderator-comment-list.component.ts b/src/app/components/moderator/moderator-comment-list/moderator-comment-list.component.ts index 969a34251aaa4f1ea45aaa1896b95fabbd7d459f..bcd88439f9b9d29f773680a7139b36468232a7e8 100644 --- a/src/app/components/moderator/moderator-comment-list/moderator-comment-list.component.ts +++ b/src/app/components/moderator/moderator-comment-list/moderator-comment-list.component.ts @@ -142,7 +142,7 @@ export class ModeratorCommentListComponent implements OnInit { this.comments[i].read = <boolean>value; break; case this.correct: - this.comments[i].correct = <boolean>value; + this.comments[i].correct = <number>value; break; case this.favorite: this.comments[i].favorite = <boolean>value; diff --git a/src/app/components/shared/comment-list/comment-list.component.ts b/src/app/components/shared/comment-list/comment-list.component.ts index 39db2a14e9e3211844ed6d6d0cbbeccb4d9fbb9a..f8e3c7fc0c986f2d107f31f4415131cb8de111d9 100644 --- a/src/app/components/shared/comment-list/comment-list.component.ts +++ b/src/app/components/shared/comment-list/comment-list.component.ts @@ -168,7 +168,7 @@ export class CommentListComponent implements OnInit { this.comments[i].read = <boolean>value; break; case this.correct: - this.comments[i].correct = <boolean>value; + this.comments[i].correct = <number>value; break; case this.favorite: this.comments[i].favorite = <boolean>value;