Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -333,15 +333,16 @@ if st.session_state.search_results is not None:
|
|
| 333 |
""")
|
| 334 |
|
| 335 |
# =========================================================================
|
| 336 |
-
# ========= INICIO DE LA
|
| 337 |
# =========================================================================
|
| 338 |
st.markdown("---")
|
| 339 |
definicion_de_caso = info.get("Definici贸n de caso", "").strip()
|
| 340 |
|
| 341 |
if definicion_de_caso: # Solo se muestra si existe la definici贸n en el JSON
|
| 342 |
-
|
| 343 |
-
|
| 344 |
-
|
|
|
|
| 345 |
# =========================================================================
|
| 346 |
-
# ========= FIN DE LA
|
| 347 |
# =========================================================================
|
|
|
|
| 333 |
""")
|
| 334 |
|
| 335 |
# =========================================================================
|
| 336 |
+
# ========= INICIO DE LA SECCI脫N CORREGIDA: DEFINICI脫N DE CASO ============
|
| 337 |
# =========================================================================
|
| 338 |
st.markdown("---")
|
| 339 |
definicion_de_caso = info.get("Definici贸n de caso", "").strip()
|
| 340 |
|
| 341 |
if definicion_de_caso: # Solo se muestra si existe la definici贸n en el JSON
|
| 342 |
+
# Se reemplaza el st.expander anidado por un subheader y markdown.
|
| 343 |
+
st.subheader("馃摉 Definici贸n de Caso Oficial")
|
| 344 |
+
# Se reemplaza \n por dos espacios + \n para forzar el salto de l铆nea en Markdown
|
| 345 |
+
st.markdown(definicion_de_caso.replace('\n', ' \n'))
|
| 346 |
# =========================================================================
|
| 347 |
+
# ========= FIN DE LA SECCI脫N CORREGIDA ===================================
|
| 348 |
# =========================================================================
|