mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-07 12:00:44 +08:00
4 lines
106 B
TypeScript
4 lines
106 B
TypeScript
export const scrollToBottom = (element: HTMLElement) => {
|
|
element.scrollTo(0, element.scrollHeight);
|
|
};
|