Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -388,6 +388,7 @@ with gr.Blocks(css=STYLE, theme=gr.themes.Soft()) as demo:
|
|
| 388 |
value=last_year,
|
| 389 |
label="Year",
|
| 390 |
interactive=True,
|
|
|
|
| 391 |
)
|
| 392 |
|
| 393 |
month_dd = gr.Dropdown(
|
|
@@ -395,6 +396,7 @@ with gr.Blocks(css=STYLE, theme=gr.themes.Soft()) as demo:
|
|
| 395 |
value=last_month,
|
| 396 |
label="Month",
|
| 397 |
interactive=True,
|
|
|
|
| 398 |
)
|
| 399 |
|
| 400 |
day_dd = gr.Dropdown(
|
|
@@ -402,6 +404,7 @@ with gr.Blocks(css=STYLE, theme=gr.themes.Soft()) as demo:
|
|
| 402 |
value=last_day,
|
| 403 |
label="Day",
|
| 404 |
interactive=True,
|
|
|
|
| 405 |
)
|
| 406 |
|
| 407 |
papers_dd = gr.Dropdown(
|
|
|
|
| 388 |
value=last_year,
|
| 389 |
label="Year",
|
| 390 |
interactive=True,
|
| 391 |
+
filterable=False
|
| 392 |
)
|
| 393 |
|
| 394 |
month_dd = gr.Dropdown(
|
|
|
|
| 396 |
value=last_month,
|
| 397 |
label="Month",
|
| 398 |
interactive=True,
|
| 399 |
+
filterable=False
|
| 400 |
)
|
| 401 |
|
| 402 |
day_dd = gr.Dropdown(
|
|
|
|
| 404 |
value=last_day,
|
| 405 |
label="Day",
|
| 406 |
interactive=True,
|
| 407 |
+
filterable=False
|
| 408 |
)
|
| 409 |
|
| 410 |
papers_dd = gr.Dropdown(
|