From 00fbeae047782a47d67a7e58720d334ff6931d92 Mon Sep 17 00:00:00 2001 From: Ruben Bimberg <ruben.bimberg@mni.thm.de> Date: Sun, 6 Jun 2021 19:41:49 +0200 Subject: [PATCH] Fixes selection by tag --- .../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 2e25c141d..2518fad0f 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