James McCool
commited on
Commit
·
d148196
1
Parent(s):
1e4e9b8
Update default target exposure value in exposure management form from 0.25 to 0.50 for improved user experience.
Browse files
app.py
CHANGED
|
@@ -1188,7 +1188,7 @@ with tab2:
|
|
| 1188 |
with st.expander('Exposure Management'):
|
| 1189 |
with st.form(key='Exposures'):
|
| 1190 |
exposure_player = st.selectbox("Player", options=sorted(list(player_names)))
|
| 1191 |
-
exposure_target = st.number_input("Target Exposure", value=.
|
| 1192 |
if 'Stack' in st.session_state['working_frame'].columns:
|
| 1193 |
exposure_stack_bool = st.selectbox("Maintain Stacks?", options=['Yes', 'No'], index=0)
|
| 1194 |
else:
|
|
|
|
| 1188 |
with st.expander('Exposure Management'):
|
| 1189 |
with st.form(key='Exposures'):
|
| 1190 |
exposure_player = st.selectbox("Player", options=sorted(list(player_names)))
|
| 1191 |
+
exposure_target = st.number_input("Target Exposure", value=.50, min_value=0.0, max_value=1.0, step=0.01)
|
| 1192 |
if 'Stack' in st.session_state['working_frame'].columns:
|
| 1193 |
exposure_stack_bool = st.selectbox("Maintain Stacks?", options=['Yes', 'No'], index=0)
|
| 1194 |
else:
|