This commit is contained in:
Richard Park 2020-01-21 18:20:38 +09:00
commit 73ea6f3ffa

View File

@ -484,7 +484,7 @@ export class MessagesComponent implements OnInit, OnDestroy {
gotoPosition(eventSeq: number) {
if (!!this.virtualScroller) {
const e = this.eventList.find(v => v.seq === eventSeq);
this.virtualScroller.scrollInto(e, false, undefined, 0, () => {});
this.virtualScroller.scrollInto(e, true, 0, 0, () => {});
}
}