ragflow / web /src /utils /dom-util.ts
zxsipola123456's picture
Upload 769 files
ab2ded1 verified
raw
history blame
106 Bytes
export const scrollToBottom = (element: HTMLElement) => {
element.scrollTo(0, element.scrollHeight);
};