From d394a78e200f4966ec0985dd367daeb615ee2c8b Mon Sep 17 00:00:00 2001 From: Chneemann Date: Sun, 2 Jun 2024 19:07:45 +0200 Subject: [PATCH] bugfixes --- .../single-chat/reaction-emojis/reaction-emojis.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/main-chat/single-chat/reaction-emojis/reaction-emojis.component.html b/src/app/components/main-chat/single-chat/reaction-emojis/reaction-emojis.component.html index 77c5fc2..cca93a7 100644 --- a/src/app/components/main-chat/single-chat/reaction-emojis/reaction-emojis.component.html +++ b/src/app/components/main-chat/single-chat/reaction-emojis/reaction-emojis.component.html @@ -36,7 +36,7 @@ class="emoji" [ngStyle]="{ 'background-color': - reaction.userId == userService.getCurrentUserId() ? '#c7cafc' : '' + reaction.userId[i] == userService.getCurrentUserId() ? '#c7cafc' : '' }" (click)="toggleEmoji(reaction.id)" (mousemove)="openDialog(reaction.id, $event)"