Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
8a5dbc8
1
Parent(s):
12682f9
fix issue of processing animation not being visible due to small output
Browse files
app.py
CHANGED
@@ -386,6 +386,8 @@ with gr.Blocks(
|
|
386 |
)
|
387 |
|
388 |
model_output_html = gr.HTML(
|
|
|
|
|
389 |
label="Model Output",
|
390 |
)
|
391 |
|
|
|
386 |
)
|
387 |
|
388 |
model_output_html = gr.HTML(
|
389 |
+
# initialize with min-height to ensure "processing" animation will be visible
|
390 |
+
value='<div style="min-height: 100px;"></div>',
|
391 |
label="Model Output",
|
392 |
)
|
393 |
|