From 8c424caa13a76a73f852bf0312533064d5f6d02b Mon Sep 17 00:00:00 2001
From: Davut Beyazit <davut.beyazit@mni.thm.de>
Date: Mon, 7 Jun 2021 19:30:36 +0200
Subject: [PATCH] Fix by team1 for tags

---
 .../components/shared/comment-list/comment-list.component.ts    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 113b67b38..c399bfdca 100644
--- a/src/app/components/shared/comment-list/comment-list.component.ts
+++ b/src/app/components/shared/comment-list/comment-list.component.ts
@@ -140,7 +140,7 @@ export class CommentListComponent implements OnInit, OnDestroy {
       dialogRef.componentInstance.roomId = this.room.id;
     });
     this.eventService.on<string>('setTagConfig').subscribe(tag => {
-      this.clickedOnTag(tag);
+      this.clickedOnKeyword(tag);
     });
     nav('tags', () => {
       const updRoom = JSON.parse(JSON.stringify(this.room));
-- 
GitLab