Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
|