Update modules/ui/ui.py
Browse files- modules/ui/ui.py +1 -1
modules/ui/ui.py
CHANGED
@@ -103,7 +103,7 @@ def show_carousel():
|
|
103 |
img = Image.open(event["imagen"]) if isinstance(event["imagen"], str) else event["imagen"]
|
104 |
st.image(
|
105 |
img,
|
106 |
-
|
107 |
caption=f"{event['titulo']} - {event['descripcion']}"
|
108 |
)
|
109 |
|
|
|
103 |
img = Image.open(event["imagen"]) if isinstance(event["imagen"], str) else event["imagen"]
|
104 |
st.image(
|
105 |
img,
|
106 |
+
use_container_width=True, # <-- Cambio realizado aquí
|
107 |
caption=f"{event['titulo']} - {event['descripcion']}"
|
108 |
)
|
109 |
|