ppsingh commited on
Commit
87d63a4
·
verified ·
1 Parent(s): 75c4241

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -360,15 +360,12 @@ with gr.Blocks(title="Audit Q&A", css= "style.css", theme=theme,elem_id = "main-
360
  #---------------- tab for REPORTS SELECTION ----------------------
361
 
362
  with gr.Tab("Reports",elem_id = "tab-config",id = 2):
363
- gr.Markdown("Reminder: To get better results select the specific report/reports")
364
 
365
  #---------------- SELECTION METHOD - RADIO BUTTON ------------
366
  search_method = gr.Radio(
367
  choices=["Search by Report Name", "Search by Filters"],
368
- label=gr.Markdown("""<div class="question-tooltip">?
369
- <div class="tooltip-content">Select the audit reports that you want to analyse directly or browse through categories and select reports</div>
370
- </div>""", elem_id="reports-tooltip"),
371
- info= "This is test",
372
  value="Search by Report Name",
373
  )
374
 
 
360
  #---------------- tab for REPORTS SELECTION ----------------------
361
 
362
  with gr.Tab("Reports",elem_id = "tab-config",id = 2):
 
363
 
364
  #---------------- SELECTION METHOD - RADIO BUTTON ------------
365
  search_method = gr.Radio(
366
  choices=["Search by Report Name", "Search by Filters"],
367
+ label="Choose search method",
368
+ info= "Select the audit reports that you want to analyse directly or browse through categories and select reports",
 
 
369
  value="Search by Report Name",
370
  )
371