Bug fix: Contact name change not working properly

This commit is contained in:
sairaj mote 2023-01-12 19:49:50 +05:30
parent 915214a2e5
commit 31b1d024d2

View File

@ -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())