This below code is not working. Please look into it. private scrollToBottom(): void { try { this.chatList.nativeElement.scrollTop = this.chatList.nativeElement.scrollHeight; } catch (err) { console.log('Could not find the "chatList" element.'); } }
This below code is not working. Please look into it.
private scrollToBottom(): void {
try {
this.chatList.nativeElement.scrollTop = this.chatList.nativeElement.scrollHeight;
}
}