From 468cd0ea175289146d3ef657e288226c9b0dc286 Mon Sep 17 00:00:00 2001 From: Chneemann Date: Sun, 2 Jun 2024 09:37:10 +0200 Subject: [PATCH] bugfixes --- .../main-chat/chat-msg-box/chat-msg-box.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/components/main-chat/chat-msg-box/chat-msg-box.component.ts b/src/app/components/main-chat/chat-msg-box/chat-msg-box.component.ts index 84ef3c6..56d5e42 100644 --- a/src/app/components/main-chat/chat-msg-box/chat-msg-box.component.ts +++ b/src/app/components/main-chat/chat-msg-box/chat-msg-box.component.ts @@ -176,7 +176,8 @@ export class ChatMsgBoxComponent { */ targetChatUser(event: Event) { event.stopPropagation(); - this.toggleBoolean.selectUserInMsgBox = true; + this.toggleBoolean.selectUserInMsgBox = + !this.toggleBoolean.selectUserInMsgBox; } /**