rhea2809 commited on
Commit
2368ec2
·
verified ·
1 Parent(s): 4517f9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -94,7 +94,7 @@ span.svelte-s1r2yt{font-weight: bold !important;
94
  with gr.Blocks(css=css) as demo:
95
  search_box = gr.Textbox( label='Search Name', placeholder='You can search for titles with regular expressions. e.g. (?<!sur)face',max_lines=1)
96
  filter_names = gr.CheckboxGroup(choices=['Guidebook','Assessment Tool','Training and Education',], value=['Guidebook','Assessment Tool','Training and Education',], label='Type')
97
- search_button = gr.Button('Search')
98
  table = gr.HTML(show_label=False)
99
  demo.load(fn=data_list.render, inputs=[search_box, filter_names,],outputs=[table,])
100
  search_box.submit(fn=data_list.render, inputs=[search_box, filter_names,], outputs=[table,])
 
94
  with gr.Blocks(css=css) as demo:
95
  search_box = gr.Textbox( label='Search Name', placeholder='You can search for titles with regular expressions. e.g. (?<!sur)face',max_lines=1)
96
  filter_names = gr.CheckboxGroup(choices=['Guidebook','Assessment Tool','Training and Education',], value=['Guidebook','Assessment Tool','Training and Education',], label='Type')
97
+ search_button = gr.Button('Search', size = 'sm')
98
  table = gr.HTML(show_label=False)
99
  demo.load(fn=data_list.render, inputs=[search_box, filter_names,],outputs=[table,])
100
  search_box.submit(fn=data_list.render, inputs=[search_box, filter_names,], outputs=[table,])