Spaces:
Runtime error
Runtime error
Jacobo commited on
Commit 路
a697953
1
Parent(s): aec942b
forgot to add the theme to blocks lmao
Browse files
app.py
CHANGED
|
@@ -128,7 +128,7 @@ theme = gr.themes.Base(
|
|
| 128 |
)
|
| 129 |
|
| 130 |
|
| 131 |
-
with gr.Blocks() as demo:
|
| 132 |
hechos = gr.Textbox(label = "Hechos", lines = 15, show_label = True, show_copy_button= True)
|
| 133 |
tema = gr.Textbox(label = "Investigaci贸n", lines = 1, show_label = True, show_copy_button= True)
|
| 134 |
teoria = gr.Textbox(label = "Teor铆a del caso", lines = 5, show_label = True, show_copy_button= True)
|
|
|
|
| 128 |
)
|
| 129 |
|
| 130 |
|
| 131 |
+
with gr.Blocks(theme=theme) as demo:
|
| 132 |
hechos = gr.Textbox(label = "Hechos", lines = 15, show_label = True, show_copy_button= True)
|
| 133 |
tema = gr.Textbox(label = "Investigaci贸n", lines = 1, show_label = True, show_copy_button= True)
|
| 134 |
teoria = gr.Textbox(label = "Teor铆a del caso", lines = 5, show_label = True, show_copy_button= True)
|