Spaces:
Running
Running
James McCool
commited on
Commit
·
0aa6473
1
Parent(s):
c6c03f4
Update position selection key in player filters for consistency
Browse files
app.py
CHANGED
@@ -848,7 +848,7 @@ with tab4:
|
|
848 |
with st.expander("Player Filters"):
|
849 |
col1, col2 = st.columns(2)
|
850 |
with col1:
|
851 |
-
pos_var3 = st.selectbox("Which position(s) would you like to view?", ['All', 'Specific'], key='
|
852 |
if pos_var3 == 'Specific':
|
853 |
pos_select3 = st.multiselect("Select your position(s)", options=['P', 'C', '1B', '2B', '3B', 'SS', 'OF'], key='pos_select3')
|
854 |
else:
|
|
|
848 |
with st.expander("Player Filters"):
|
849 |
col1, col2 = st.columns(2)
|
850 |
with col1:
|
851 |
+
pos_var3 = st.selectbox("Which position(s) would you like to view?", ['All', 'Specific'], key='pos_var3')
|
852 |
if pos_var3 == 'Specific':
|
853 |
pos_select3 = st.multiselect("Select your position(s)", options=['P', 'C', '1B', '2B', '3B', 'SS', 'OF'], key='pos_select3')
|
854 |
else:
|