Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion views/gestione_domande.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])

Expand Down
2 changes: 1 addition & 1 deletion views/gestione_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
Loading