YchKhan commited on
Commit
f4f1674
1 Parent(s): 32ea958

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -101,7 +101,7 @@ with gr.Blocks() as demo:
101
  with gr.Tab("File extraction"):
102
  gr.Markdown(" Put either just a link, or a link and an excel file with an 'Actions' column")
103
  with gr.Row():
104
- dd_url = gr.Dropdown(label="(e.g. https://www.3gpp.org/ftp/TSG_SA/WG1_Serv/TSGS1_105_Athens/Docs)", multiselect=False, value="https://www.3gpp.org/ftp/", allow_custom_value=True, scale=9)
105
  btn_search = gr.Button("Search")
106
  with gr.Accordion("Filter by file status", open=False):
107
  with gr.Row():
@@ -131,7 +131,7 @@ with gr.Blocks() as demo:
131
  with gr.Tab("Charts Generation"):
132
  with gr.Row():
133
  dd_label1 = gr.Dropdown(label="Label 1", multiselect=False)
134
- dd_label2 = gr.Dropdown(label="Label 2", multiselect=False, value="")
135
  btn_chart = gr.Button("Generate Bar Plot")
136
  plt_figure = gr.Plot()
137
 
 
101
  with gr.Tab("File extraction"):
102
  gr.Markdown(" Put either just a link, or a link and an excel file with an 'Actions' column")
103
  with gr.Row():
104
+ dd_url = gr.Dropdown(label="(e.g. https://www.3gpp.org/ftp/TSG_SA/WG1_Serv/TSGS1_105_Athens/Docs)", multiselect=False, allow_custom_value=True, scale=9) #, value="https://www.3gpp.org/ftp/"
105
  btn_search = gr.Button("Search")
106
  with gr.Accordion("Filter by file status", open=False):
107
  with gr.Row():
 
131
  with gr.Tab("Charts Generation"):
132
  with gr.Row():
133
  dd_label1 = gr.Dropdown(label="Label 1", multiselect=False)
134
+ dd_label2 = gr.Dropdown(label="Label 2", multiselect=False)#, value=""
135
  btn_chart = gr.Button("Generate Bar Plot")
136
  plt_figure = gr.Plot()
137