From 397d9bcdd85f83996e87b29cfaf8c6a107a43846 Mon Sep 17 00:00:00 2001 From: NicolasCantu Date: Wed, 15 Jan 2025 13:00:06 +0100 Subject: [PATCH] Rename selectedMemberId to selectedMember --- src/pages/chat/chat.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/chat/chat.ts b/src/pages/chat/chat.ts index 5ea185c..d5a4818 100755 --- a/src/pages/chat/chat.ts +++ b/src/pages/chat/chat.ts @@ -37,6 +37,7 @@ class ChatElement extends HTMLElement { private processId: string | null = null; private processRoles: any | null = null; + private selectedMember: string[] = []; private notifications: LocalNotification[] = []; private notificationBadge = document.querySelector('.notification-badge'); private notificationBoard = document.getElementById('notification-board');