scrollToId(Id){ let chatId = document.getElementById(Id); console.log('scrollToId: ', Id, chatId); if (chatId) { chatId.scrollIntoView({behavior: "smooth"}) } }