James McCool
commited on
Commit
·
b35b9b7
1
Parent(s):
5a5c5db
Update preset option in app.py to correct wording for 'Distributed' selection
Browse files- Changed the option label from 'Distributed (Spread Risk)' to 'Distributed (Spread Out Risk)' in the preset selection dropdown within the form.
- This update ensures clarity and consistency in the user interface for preset choices.
app.py
CHANGED
@@ -1108,7 +1108,7 @@ with tab2:
|
|
1108 |
with st.expander('Presets'):
|
1109 |
st.info("Still heavily in testing here, I'll announce when they are ready for use.")
|
1110 |
with st.form(key='Small Field Preset'):
|
1111 |
-
preset_choice = st.selectbox("Preset", options=['Small Field (Heavy Own)', 'Large Field (Finish Percentile / Edge)', 'Distributed (Spread Risk)'], index=0)
|
1112 |
lineup_target = st.number_input("Lineups to produce", value=150, min_value=1, step=1)
|
1113 |
submitted = st.form_submit_button("Submit")
|
1114 |
if submitted:
|
|
|
1108 |
with st.expander('Presets'):
|
1109 |
st.info("Still heavily in testing here, I'll announce when they are ready for use.")
|
1110 |
with st.form(key='Small Field Preset'):
|
1111 |
+
preset_choice = st.selectbox("Preset", options=['Small Field (Heavy Own)', 'Large Field (Finish Percentile / Edge)', 'Distributed (Spread Out Risk)'], index=0)
|
1112 |
lineup_target = st.number_input("Lineups to produce", value=150, min_value=1, step=1)
|
1113 |
submitted = st.form_submit_button("Submit")
|
1114 |
if submitted:
|