James McCool
commited on
Commit
·
e025a7c
1
Parent(s):
5bce773
Adjust column layout for filter options in app.py
Browse files- Modified the column width for the filter options to improve layout consistency and visual balance.
- This change enhances the user interface by ensuring a more streamlined arrangement of 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,
|
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, 7])
|
270 |
with clear_col:
|
271 |
if st.button('Clear data', key='reset3'):
|
272 |
st.session_state.clear()
|