ragflow / web /src /utils /dom-util.ts
balibabu
fix: Set the default value of Self RAG to false #1220 (#1702)
e08f767
raw
history blame contribute delete
106 Bytes
export const scrollToBottom = (element: HTMLElement) => {
element.scrollTo(0, element.scrollHeight);
};