Spaces:
Sleeping
Sleeping
Fix mobile view auto-scroll issue by setting autofocus=False in ChatInterface
Browse files
app.py
CHANGED
@@ -200,6 +200,7 @@ def gradio_ui():
|
|
200 |
lang_textbox,
|
201 |
],
|
202 |
type="messages",
|
|
|
203 |
)
|
204 |
|
205 |
reset_button = gr.Button("Reset", variant="secondary")
|
|
|
200 |
lang_textbox,
|
201 |
],
|
202 |
type="messages",
|
203 |
+
autofocus=False
|
204 |
)
|
205 |
|
206 |
reset_button = gr.Button("Reset", variant="secondary")
|