CultriX commited on
Commit
f2ffcc9
1 Parent(s): 4be843d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -128,7 +128,7 @@ with gr.Blocks(css=css) as demo:
128
  return [(img, f"Prompt: {p}, Seed: {s}, Width: {w}, Height: {h}, Guidance Scale: {g}, Steps: {n}") for img, p, s, w, h, g, n in history]
129
 
130
  history_button = gr.Button("Show History")
131
- history_gallery = gr.Gallery(label="History").style(scale=2)
132
 
133
  history_button.click(fn=show_history, inputs=[], outputs=[history_gallery])
134
 
 
128
  return [(img, f"Prompt: {p}, Seed: {s}, Width: {w}, Height: {h}, Guidance Scale: {g}, Steps: {n}") for img, p, s, w, h, g, n in history]
129
 
130
  history_button = gr.Button("Show History")
131
+ history_gallery = gr.Gallery(label="History").scale(2)
132
 
133
  history_button.click(fn=show_history, inputs=[], outputs=[history_gallery])
134