Spaces:
Running
Running
James McCool
commited on
Commit
·
423ffa1
1
Parent(s):
69b11f3
Update app.py to change the order of options in the slate type radio button for Player ROO, improving user experience by prioritizing 'Showdown' over 'Regular'.
Browse files
app.py
CHANGED
@@ -160,7 +160,7 @@ with tab2:
|
|
160 |
st.header("Player ROO")
|
161 |
with st.expander("Info and Filters"):
|
162 |
with st.container():
|
163 |
-
slate_type_var2 = st.radio("Which slate type are you loading?", ('
|
164 |
slate_var2 = st.radio("Which slate data are you loading?", ('Main', 'Secondary', 'Auxiliary'), key='slate_var2')
|
165 |
pos_var2 = st.radio("Which position group would you like to view?", ('All', 'Pitchers', 'Hitters'), key='pos_var2')
|
166 |
if slate_type_var2 == 'Regular':
|
|
|
160 |
st.header("Player ROO")
|
161 |
with st.expander("Info and Filters"):
|
162 |
with st.container():
|
163 |
+
slate_type_var2 = st.radio("Which slate type are you loading?", ('Showdown', 'Regular'), key='slate_type_var2')
|
164 |
slate_var2 = st.radio("Which slate data are you loading?", ('Main', 'Secondary', 'Auxiliary'), key='slate_var2')
|
165 |
pos_var2 = st.radio("Which position group would you like to view?", ('All', 'Pitchers', 'Hitters'), key='pos_var2')
|
166 |
if slate_type_var2 == 'Regular':
|