James McCool
commited on
Commit
·
5bce773
1
Parent(s):
b27b8d0
Update column layout for filter options in app.py
Browse files- Modified the column definition for the filter options to use a list format, improving layout flexibility and readability.
- This change enhances the user interface by ensuring a more consistent and visually appealing arrangement of filter controls.
app.py
CHANGED
@@ -266,7 +266,7 @@ with tab2:
|
|
266 |
if 'display_contest_info' in st.session_state:
|
267 |
with st.expander("Info and filters"):
|
268 |
st.info("Note that any filtering here needs to be reset manually, i.e. if you parse down the specific users and want to reset the table, just backtrack your filtering by setting it back to 'All'")
|
269 |
-
clear_col, reset_col, blank_col = st.columns(1, 1, 8)
|
270 |
with clear_col:
|
271 |
if st.button('Clear data', key='reset3'):
|
272 |
st.session_state.clear()
|
|
|
266 |
if 'display_contest_info' in st.session_state:
|
267 |
with st.expander("Info and filters"):
|
268 |
st.info("Note that any filtering here needs to be reset manually, i.e. if you parse down the specific users and want to reset the table, just backtrack your filtering by setting it back to 'All'")
|
269 |
+
clear_col, reset_col, blank_col = st.columns([1, 1, 8])
|
270 |
with clear_col:
|
271 |
if st.button('Clear data', key='reset3'):
|
272 |
st.session_state.clear()
|