Update modules/studentact/current_situation_interface.py
Browse files
modules/studentact/current_situation_interface.py
CHANGED
@@ -132,9 +132,9 @@ def display_current_situation_interface(lang_code, nlp_models, current_situation
|
|
132 |
with results_col:
|
133 |
if st.session_state.show_results and st.session_state.current_metrics is not None:
|
134 |
# Primero los radio buttons para tipo de texto
|
135 |
-
st.markdown(f"### {current_situation_t['text_type_header']}") # Corregido: usar corchetes
|
136 |
text_type = st.radio(
|
137 |
-
"",
|
138 |
options=list(TEXT_TYPES.keys()),
|
139 |
format_func=lambda x: TEXT_TYPES[x]['name'],
|
140 |
horizontal=True,
|
|
|
132 |
with results_col:
|
133 |
if st.session_state.show_results and st.session_state.current_metrics is not None:
|
134 |
# Primero los radio buttons para tipo de texto
|
135 |
+
st.markdown(f"### {current_situation_t['text_type_header', 'Tipo de texto']}") # Corregido: usar corchetes
|
136 |
text_type = st.radio(
|
137 |
+
"Selecciona el tipo de texto",
|
138 |
options=list(TEXT_TYPES.keys()),
|
139 |
format_func=lambda x: TEXT_TYPES[x]['name'],
|
140 |
horizontal=True,
|