AIdeaText commited on
Commit
bc20174
·
verified ·
1 Parent(s): 7c29197

Update modules/morphosyntax/morphosyntax_interface.py

Browse files
modules/morphosyntax/morphosyntax_interface.py CHANGED
@@ -52,11 +52,14 @@ def display_morphosyntax_interface(lang_code, nlp_models, morpho_t):
52
  st.session_state[f"text_area_{lang_code}_{st.session_state.analysis_counter}"])
53
  )
54
 
55
- # Botón de análisis con clave única
56
  if st.button(
57
- morpho_t.get('analyze_button', 'Analyze text'),
58
- key=f"analyze_button_{lang_code}_{st.session_state.analysis_counter}"
 
 
59
  ):
 
60
  current_input = st.session_state[input_key]
61
 
62
  if current_input:
 
52
  st.session_state[f"text_area_{lang_code}_{st.session_state.analysis_counter}"])
53
  )
54
 
55
+ # Botón específico para análisis morfosintáctico
56
  if st.button(
57
+ morpho_t.get('morpho_analyze_button', 'Analyze Morphosyntax'), # Nombre específico
58
+ key="morpho_analysis_button", # Key única para morfosintáctico
59
+ disabled=not sentence_input, # Se habilita solo si hay texto
60
+ use_container_width=True
61
  ):
62
+
63
  current_input = st.session_state[input_key]
64
 
65
  if current_input: