mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
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:
parent
710cbb67fc
commit
67bb7bcb6a
6
.changeset/chatty-socks-bow.md
Normal file
6
.changeset/chatty-socks-bow.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
"@gradio/dataframe": patch
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
fix:ensure dataframe doesn't scroll unless needed
|
@ -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";
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user