James McCool commited on
Commit
c7d3c05
·
1 Parent(s): 936a186

Update preset options in app.py: modify the small field preset selection to include more descriptive labels, enhancing clarity for users when choosing lineup configurations.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1106,7 +1106,7 @@ with tab2:
1106
  st.session_state['export_merge'] = st.session_state['working_frame'].copy()
1107
  with st.expander('Presets'):
1108
  with st.form(key='Small Field Preset'):
1109
- preset_choice = st.selectbox("Preset", options=['Small Field', 'Large Field', 'Volatile', 'Distributed'], index=0)
1110
  lineup_target = st.number_input("Lineups to produce", value=150, min_value=1, step=1)
1111
  submitted = st.form_submit_button("Submit")
1112
  if submitted:
 
1106
  st.session_state['export_merge'] = st.session_state['working_frame'].copy()
1107
  with st.expander('Presets'):
1108
  with st.form(key='Small Field Preset'):
1109
+ preset_choice = st.selectbox("Preset", options=['Small Field (Heavy Own)', 'Large Field (Finish Percentile / Edge)', 'Volatile', 'Distributed'], index=0)
1110
  lineup_target = st.number_input("Lineups to produce", value=150, min_value=1, step=1)
1111
  submitted = st.form_submit_button("Submit")
1112
  if submitted: