lenML commited on
Commit
ab4e57a
·
verified ·
1 Parent(s): cef2c46

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -10
app.py CHANGED
@@ -182,16 +182,17 @@ with gr.Blocks(css=css) as demo:
182
  use_output_btn = gr.Button("↗️ Use as image 1", variant="secondary", size="sm", visible=False)
183
 
184
  with gr.Row():
185
- with gr.Row():
186
- prompt = gr.Text(
187
- label="Prompt",
188
- show_label=False,
189
- placeholder="describe the edit instruction",
190
- container=False,
191
- lines=5
192
- )
193
- with gr.Row():
194
- run_button = gr.Button("Edit!", variant="primary")
 
195
 
196
  with gr.Accordion("Advanced Settings", open=False):
197
  # Negative prompt UI element is removed here
 
182
  use_output_btn = gr.Button("↗️ Use as image 1", variant="secondary", size="sm", visible=False)
183
 
184
  with gr.Row():
185
+ with gr.Column():
186
+ with gr.Row():
187
+ prompt = gr.Text(
188
+ label="Prompt",
189
+ show_label=False,
190
+ placeholder="describe the edit instruction",
191
+ container=False,
192
+ lines=5
193
+ )
194
+ with gr.Row():
195
+ run_button = gr.Button("Edit!", variant="primary")
196
 
197
  with gr.Accordion("Advanced Settings", open=False):
198
  # Negative prompt UI element is removed here