James McCool commited on
Commit
41efef4
·
1 Parent(s): a34bb65

Update order of options in selectbox for contest data parsing in app.py

Browse files

- Changed the order of options in the selectbox for selecting between 'Manual upload' and 'DB Search' to prioritize 'DB Search', improving user experience and clarity in the selection process.

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -54,7 +54,7 @@ with tab1:
54
  st.session_state.clear()
55
  col1, col2, col3 = st.columns(3)
56
  with col1:
57
- parse_type = st.selectbox("Manual upload or DB search?", ['Manual', 'DB Search'], key='parse_type')
58
  with col2:
59
  sport_select = st.selectbox("Select Sport", ['MLB', 'NBA', 'NFL'], key='sport_select')
60
  with col3:
 
54
  st.session_state.clear()
55
  col1, col2, col3 = st.columns(3)
56
  with col1:
57
+ parse_type = st.selectbox("Manual upload or DB search?", ['DB Search', 'Manual'], key='parse_type')
58
  with col2:
59
  sport_select = st.selectbox("Select Sport", ['MLB', 'NBA', 'NFL'], key='sport_select')
60
  with col3: