I’m running locally an app with streamlit 1.31.1. Up until last week i could dinamically filter selectboxes in an st.form() but now i can’t. Is there a secret form to do it now or a workaround?
with st.form(key='elections_form'):
anio_elecciones = st.selectbox(
'Selecciona el año de la elección:',
('2011', '2015', '2019', '2023')
)
tipos = []
if anio_elecciones == '2011' or anio_elecciones == '2019':
tipos = ['PASO', 'GENERALES']
elif anio_elecciones == '2015' or anio_elecciones == '2023':
tipos = ['PASO', 'GENERALES', 'BALLOTAGE']
tipo_elecciones = st.selectbox('Seleccione el tipo de elección:',tipos)
third_options = ['RESULTADOS', 'CANDIDATOS', 'PARTICIPACION', 'VOTO EN BLANCO']
selected_subcategory = st.selectbox('Seleccione la categoría', third_options)
spacer(0.5)
submit_button = st.form_submit_button(label='Visualizar')
this used to work