erastorgueva-nv commited on
Commit
8a5dbc8
·
1 Parent(s): 12682f9

fix issue of processing animation not being visible due to small output

Browse files
Files changed (1) hide show
  1. app.py +2 -0
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