Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -329,8 +329,8 @@ def show_field(f: Field, index: int, data_collected):
|
|
329 |
case 'multiselect':
|
330 |
choices = default_choices if not f.other_params.get('choices') else f.other_params.get('choices')
|
331 |
st.multiselect(f.title,
|
332 |
-
options =
|
333 |
-
format_func=lambda x:
|
334 |
key=key, max_selections=3,
|
335 |
help=f.help)
|
336 |
case 'likert_radio':
|
|
|
329 |
case 'multiselect':
|
330 |
choices = default_choices if not f.other_params.get('choices') else f.other_params.get('choices')
|
331 |
st.multiselect(f.title,
|
332 |
+
options = choices,
|
333 |
+
format_func=lambda x: x,
|
334 |
key=key, max_selections=3,
|
335 |
help=f.help)
|
336 |
case 'likert_radio':
|