Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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][
|
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 |
-
|
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"]):
|