mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-13 11:57:29 +08:00
Prevent broken scroll_to_output in Spaces (#4822)
* changes * c * change * changes
This commit is contained in:
parent
4b7cb2a436
commit
5dc445b08f
@ -38,6 +38,7 @@
|
||||
- Don't crash when uploaded image has broken EXIF data, by [@akx](https://github.com/akx) in [PR 4764](https://github.com/gradio-app/gradio/pull/4764)
|
||||
- Place toast messages at the top of the screen by [@pngwn](https://github.com/pngwn) in [PR 4796](https://github.com/gradio-app/gradio/pull/4796)
|
||||
- Fix regressed styling of Login page when auth is enabled by [@freddyaboulton](https://github.com/freddyaboulton) in [PR 4797](https://github.com/gradio-app/gradio/pull/4797)
|
||||
- Prevent broken scrolling to output on Spaces by [@aliabid94](https://github.com/aliabid94) in [PR 4822](https://github.com/gradio-app/gradio/pull/4822)
|
||||
|
||||
## Other Changes:
|
||||
|
||||
|
@ -283,7 +283,7 @@ class Block:
|
||||
"js": js,
|
||||
"queue": False if fn is None else queue,
|
||||
"api_name": api_name,
|
||||
"scroll_to_output": scroll_to_output,
|
||||
"scroll_to_output": False if utils.get_space() else scroll_to_output,
|
||||
"show_progress": show_progress,
|
||||
"every": every,
|
||||
"batch": batch,
|
||||
|
Loading…
x
Reference in New Issue
Block a user