diff --git a/views/gestione_domande.py b/views/gestione_domande.py index f6681e6..5338de6 100644 --- a/views/gestione_domande.py +++ b/views/gestione_domande.py @@ -169,7 +169,7 @@ def render(): for idx, row in filtered_questions_df.iterrows(): category_display = row.get('categoria', 'N/A') if pd.notna(row.get('categoria')) else 'N/A' with st.expander( - f"Domanda: {row['domanda'][:100]}... (Categoria: {category_display})" + f"{row['domanda'][:100]}... (Categoria: {category_display})" ): col1, col2 = st.columns([3, 1]) diff --git a/views/gestione_set.py b/views/gestione_set.py index eccb233..7fde132 100644 --- a/views/gestione_set.py +++ b/views/gestione_set.py @@ -123,7 +123,7 @@ def render(): st.session_state.set_expanders[exp_key] = False with st.expander( - f"Set: {row['name']}", + f"{row['name']}", expanded=st.session_state.set_expanders.get(exp_key, False), ): col1, col2 = st.columns([3, 1])