Update app.py
Browse files
app.py
CHANGED
|
@@ -453,7 +453,7 @@ with gr.Blocks(css="custom.css") as demo:
|
|
| 453 |
)
|
| 454 |
|
| 455 |
for post in blog_posts:
|
| 456 |
-
with gr.Accordion(post["title"]):
|
| 457 |
gr.Markdown(post["content"])
|
| 458 |
|
| 459 |
with gr.Row():
|
|
|
|
| 453 |
)
|
| 454 |
|
| 455 |
for post in blog_posts:
|
| 456 |
+
with gr.Accordion(post["title"], open=False):
|
| 457 |
gr.Markdown(post["content"])
|
| 458 |
|
| 459 |
with gr.Row():
|