ragflow / web /src /utils /domUtils.ts
balibabu
feat: add file icon and add message popover content (#77)
8e222fd
raw
history blame
106 Bytes
export const scrollToBottom = (element: HTMLElement) => {
element.scrollTo(0, element.scrollHeight);
};