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