mmmapms commited on
Commit
0840cf2
1 Parent(s): e8a9f87

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -227,7 +227,7 @@ selected_country = st.sidebar.selectbox('Select Country', list(countries.keys())
227
  if selected_country != 'Overall':
228
  st.sidebar.subheader("Section")
229
  st.sidebar.caption("Select the type of information you want to explore.")
230
- section = st.sidebar.radio('', ['Data Quality', 'Forecasts Quality', 'Insights'], index=1)
231
  else:
232
  section = None # No section is shown when "Overall" is selected
233
 
 
227
  if selected_country != 'Overall':
228
  st.sidebar.subheader("Section")
229
  st.sidebar.caption("Select the type of information you want to explore.")
230
+ section = st.sidebar.radio('Section', ['Data Quality', 'Forecasts Quality', 'Insights'], index=1, label_visibility='collapsed')
231
  else:
232
  section = None # No section is shown when "Overall" is selected
233