Yntec commited on
Commit
98376c7
1 Parent(s): dd93521

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,7 +49,7 @@ with gr.Blocks() as demo:
49
  stop_button = gr.Button('Stop', variant = 'secondary', interactive = False)
50
  gen_button.click(lambda s: gr.update(interactive = True), None, stop_button)
51
 
52
- with gr.Row():
53
  output = [gr.Image(label = m) for m in default_models]
54
  current_models = [gr.Textbox(m, visible = False) for m in default_models]
55
 
 
49
  stop_button = gr.Button('Stop', variant = 'secondary', interactive = False)
50
  gen_button.click(lambda s: gr.update(interactive = True), None, stop_button)
51
 
52
+ with gr.Column():
53
  output = [gr.Image(label = m) for m in default_models]
54
  current_models = [gr.Textbox(m, visible = False) for m in default_models]
55