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 704bbf6a270c5891d1fe168d20c19a5474a97762..6a0ff0599d9c5d629270d32e571d745c855547f2 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 @@ -56,7 +56,7 @@ export class ModeratorCommentListComponent implements OnInit { search = false; searchPlaceholder = ''; periodsList = Object.values(Period); - period: Period = Period.ALL; + period: Period = Period.TWOWEEKS; constructor( private commentService: CommentService, 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 e2a62142ac9c583286f3129e288d60fe5f264123..8c5869281befb8d99e097fe8b10f39e161ac0705 100644 --- a/src/app/components/shared/comment-list/comment-list.component.ts +++ b/src/app/components/shared/comment-list/comment-list.component.ts @@ -83,7 +83,7 @@ export class CommentListComponent implements OnInit, OnDestroy { freeze = false; commentStream: Subscription; periodsList = Object.values(Period); - period: Period = Period.ALL; + period: Period = Period.TWOWEEKS; constructor( private commentService: CommentService,