AIdeaText commited on
Commit
c950914
·
verified ·
1 Parent(s): 0aa6c9e

Update modules/studentact/current_situation_interface.py

Browse files
modules/studentact/current_situation_interface.py CHANGED
@@ -106,7 +106,7 @@ def display_current_situation_interface(lang_code, nlp_models, t):
106
  st.markdown("""
107
  <style>
108
  .stTextArea textarea {
109
- min-height: 400px !important;
110
  }
111
  </style>
112
  """, unsafe_allow_html=True)
@@ -115,7 +115,7 @@ def display_current_situation_interface(lang_code, nlp_models, t):
115
  # Text area con manejo de estado - usando t.get directamente
116
  text_input = st.text_area(
117
  t.get('input_prompt', "Escribe o pega tu texto aquí:"),
118
- height=400,
119
  key=f"text_area_{lang_code}", # Clave única por idioma
120
  value=st.session_state.text_input,
121
  help=t.get('help', "Este texto será analizado para darte recomendaciones personalizadas")
 
106
  st.markdown("""
107
  <style>
108
  .stTextArea textarea {
109
+ min-height: 800px !important;
110
  }
111
  </style>
112
  """, unsafe_allow_html=True)
 
115
  # Text area con manejo de estado - usando t.get directamente
116
  text_input = st.text_area(
117
  t.get('input_prompt', "Escribe o pega tu texto aquí:"),
118
+ height=800,
119
  key=f"text_area_{lang_code}", # Clave única por idioma
120
  value=st.session_state.text_input,
121
  help=t.get('help', "Este texto será analizado para darte recomendaciones personalizadas")