From 31b1d024d28ab1ba905acb31e59ed3f5e70fc16e Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Thu, 12 Jan 2023 19:49:50 +0530 Subject: [PATCH] Bug fix: Contact name change not working properly --- index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.html b/index.html index 3b93d2f..1326427 100644 --- a/index.html +++ b/index.html @@ -3976,8 +3976,7 @@ } getRef('contact_name').addEventListener('change', e => { - console.log(e) - changeContactName(e.detail.value.trim()) + changeContactName(e.target.value.trim()) }) getRef('group_description').addEventListener('change', e => { messenger.changeGroupDescription(floGlobals.activeFloID, e.detail.value.trim())