chansung commited on
Commit
c53af21
β€’
1 Parent(s): 4572f9c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -84,7 +84,7 @@ sorted_month = sorted(date_dict[last_year].keys())
84
  last_month = sorted_month[-1]
85
  sorted_day = sorted(date_dict[last_year][last_month].keys())
86
  last_day = sorted_day[-1]
87
- last_papers = date_dict[last_year][last_month][last_date]
88
  selected_paper = last_papers[0]
89
 
90
  def filter_function(example, ids):
@@ -402,7 +402,7 @@ with gr.Blocks(css=STYLE, theme=gr.themes.Soft()) as demo:
402
  value=selected_paper["title"],
403
  label="Select paper title",
404
  interactive=True,
405
- scale=7, filterable=False
406
  )
407
 
408
  with gr.Column(elem_classes=["no-gap"]):
 
84
  last_month = sorted_month[-1]
85
  sorted_day = sorted(date_dict[last_year][last_month].keys())
86
  last_day = sorted_day[-1]
87
+ last_papers = date_dict[last_year][last_month][last_day]
88
  selected_paper = last_papers[0]
89
 
90
  def filter_function(example, ids):
 
402
  value=selected_paper["title"],
403
  label="Select paper title",
404
  interactive=True,
405
+ filterable=False
406
  )
407
 
408
  with gr.Column(elem_classes=["no-gap"]):