James McCool commited on
Commit
4d5a500
·
1 Parent(s): aa508ab

Fix the order of options in Stack Priority isolation radio button in app.py to improve user experience and clarity in data filtering.

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -280,7 +280,7 @@ with tab1:
280
  with st.expander("Info and Filters"):
281
  with st.container():
282
  slate_var1 = st.radio("Which data are you loading?", ('Main Slate', 'Secondary Slate', 'Turbo Slate'), key='slate_var1')
283
- prio_split = st.radio("Do you want to isolate a specific Stack Priority?", ('Yes', 'No'), key='prio_split')
284
  if prio_split == 'Yes':
285
  prio_var = st.radio("Which Stack Priority are you looking for?", ['Outfield', 'Infield'], key='prio_var')
286
  else:
 
280
  with st.expander("Info and Filters"):
281
  with st.container():
282
  slate_var1 = st.radio("Which data are you loading?", ('Main Slate', 'Secondary Slate', 'Turbo Slate'), key='slate_var1')
283
+ prio_split = st.radio("Do you want to isolate a specific Stack Priority?", ('No', 'Yes'), key='prio_split')
284
  if prio_split == 'Yes':
285
  prio_var = st.radio("Which Stack Priority are you looking for?", ['Outfield', 'Infield'], key='prio_var')
286
  else: