From 364d09e737d830638a2b5289888d9d2d3593c3a9 Mon Sep 17 00:00:00 2001 From: Lukas Haase <lukas.haase@mni.thm.de> Date: Mon, 30 Mar 2020 15:07:38 +0200 Subject: [PATCH] remove debug border --- .../questionwall/question-wall/question-wall.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/shared/questionwall/question-wall/question-wall.component.ts b/src/app/components/shared/questionwall/question-wall/question-wall.component.ts index f02626bb2..9e194826c 100644 --- a/src/app/components/shared/questionwall/question-wall/question-wall.component.ts +++ b/src/app/components/shared/questionwall/question-wall/question-wall.component.ts @@ -49,7 +49,7 @@ export class QuestionWallComponent implements OnInit, AfterViewInit, OnDestroy { } ngOnInit(): void { - StyleDebug.border('c'); + // StyleDebug.border('c'); this.commentService.getAckComments(this.roomId).subscribe(e => { e.sort((a, b) => new Date(a.timestamp).getTime() - new Date(b.timestamp).getTime()); e.forEach(c => this.comments.push(new QuestionWallComment(c, true))); -- GitLab