We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gr.Progress
gr.Dataframe
The progress bar is not displayed fully on Dataframes, see screenshot.
import gradio as gr def foo(progress=gr.Progress()): import time progress(0, desc="Starting") time.sleep(1) for i in progress.tqdm(range(1, 101), desc="Progress"): time.sleep(1) return [["finished"]] with gr.Blocks() as blocks: m = gr.Matrix(headers=["test"]) gr.Button("Foo").click(foo, show_progress=True, outputs=m) blocks.launch()
gradio==5.16.1
I can work around it
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The progress bar is not displayed fully on Dataframes, see screenshot.
Have you searched existing issues? 🔎
Reproduction
Screenshot
Logs
System Info
Severity
I can work around it
The text was updated successfully, but these errors were encountered: