Update app.py
Browse files
app.py
CHANGED
@@ -106,7 +106,7 @@ with gr.Blocks(css=css) as demo:
|
|
106 |
with gr.Row():
|
107 |
table = gr.HTML(show_label=False)
|
108 |
|
109 |
-
demo.load(fn=data_list.render, outputs=[table,])
|
110 |
search_button.click(fn=data_list.render, inputs=[search_box, filter_names,filter_names2,], outputs=[table,])
|
111 |
|
112 |
demo.queue()
|
|
|
106 |
with gr.Row():
|
107 |
table = gr.HTML(show_label=False)
|
108 |
|
109 |
+
demo.load(fn=data_list.render, inputs=[search_box, filter_names,filter_names2,], outputs=[table,])
|
110 |
search_button.click(fn=data_list.render, inputs=[search_box, filter_names,filter_names2,], outputs=[table,])
|
111 |
|
112 |
demo.queue()
|