James McCool
commited on
Commit
·
f591d4e
1
Parent(s):
ba8ea34
Add info message in Presets section of app.py to indicate ongoing testing status, enhancing user awareness of feature readiness.
Browse files
app.py
CHANGED
@@ -1105,6 +1105,7 @@ with tab2:
|
|
1105 |
st.session_state['working_frame'] = st.session_state['working_frame'].sort_values(by='median', ascending=False)
|
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)
|
|
|
1105 |
st.session_state['working_frame'] = st.session_state['working_frame'].sort_values(by='median', ascending=False)
|
1106 |
st.session_state['export_merge'] = st.session_state['working_frame'].copy()
|
1107 |
with st.expander('Presets'):
|
1108 |
+
st.info("Still heavily in testing here, I'll announce when they are ready for use.")
|
1109 |
with st.form(key='Small Field Preset'):
|
1110 |
preset_choice = st.selectbox("Preset", options=['Small Field (Heavy Own)', 'Large Field (Finish Percentile / Edge)', 'Volatile', 'Distributed'], index=0)
|
1111 |
lineup_target = st.number_input("Lineups to produce", value=150, min_value=1, step=1)
|