ensure dataframe doesn't scroll unless needed (#5445)

* ensure dataframe doesn't scroll unless needed

* add changeset

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
pngwn 2023-09-07 22:26:58 +01:00 committed by GitHub
parent 710cbb67fc
commit 67bb7bcb6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 2 deletions

View File

@ -0,0 +1,6 @@
---
"@gradio/dataframe": patch
"gradio": patch
---
fix:ensure dataframe doesn't scroll unless needed

View File

@ -103,11 +103,14 @@
return "forwards";
}
const { top: viewport_top } = viewport.getBoundingClientRect();
const { top, bottom } = current.getBoundingClientRect();
if (top < 37) {
if (top - viewport_top < 37) {
return "back";
}
if (bottom > viewport_height) {
if (bottom - viewport_top > viewport_height) {
return "forwards";
}