Modals don't show in latest Gradio (v5.36.2)

#5
by elbhorgo2 - opened

The modal worked fine in 5.35, but now (5.36.2) they don't show.

Example:
import gradio as gr
from gradio_modal import Modal
with gr.Blocks() as gui:
gr.Markdown("## Hello, Gradio!")
with Modal() as mod1:
gr.Textbox("My modality...")
gr.Button("dont click me!")
gui.launch()

Best regards,
TeD

Sign up or log in to comment