Omnibus commited on
Commit
92f57e2
1 Parent(s): 31e2d7f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -139,7 +139,8 @@ with gr.Blocks() as app:
139
  input = gr.Textbox(label = "URL")
140
  btn = gr.Button("Preview")
141
  output = gr.HTML("""""")
 
142
 
143
  search_btn.click(search_fn,[search_box,num_return],output)
144
- btn.click(first,None,output).then(test,input,output)
145
  app.launch()
 
139
  input = gr.Textbox(label = "URL")
140
  btn = gr.Button("Preview")
141
  output = gr.HTML("""""")
142
+ details = gr.HTML("""""")
143
 
144
  search_btn.click(search_fn,[search_box,num_return],output)
145
+ btn.click(first,None,output).then(test,input,output).then(details_fn,input,details)
146
  app.launch()