annikwag commited on
Commit
6bc08d6
·
verified ·
1 Parent(s): d947618

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -202,19 +202,20 @@ with col5_2:
202
  ###########################################
203
  # Filter Controls - Row 3 (Remaining Filter)
204
  ###########################################
205
- col1_3, col2_3, col3_3 = st.columns([7, 23, 5])
206
  with col1_3:
207
  # Place the "Show only exact matches" checkbox here
208
  show_exact_matches = st.checkbox("Show only exact matches", key="show_exact_matches")
209
  with col2_3:
210
- st.empty()
211
- with col3_3:
212
  # Right-align a more prominent reset button
213
  with st.container():
214
  st.markdown("<div style='text-align: right;'>", unsafe_allow_html=True)
215
  if st.button("**Reset Filters**", key="reset_button_row3"):
216
  reset_filters()
217
  st.markdown("</div>", unsafe_allow_html=True)
 
 
 
218
 
219
  ###########################################
220
  # Helper function for valid project id
 
202
  ###########################################
203
  # Filter Controls - Row 3 (Remaining Filter)
204
  ###########################################
205
+ col1_3, col2_3, col3_3 = st.columns([1, 0.5, 3.5])
206
  with col1_3:
207
  # Place the "Show only exact matches" checkbox here
208
  show_exact_matches = st.checkbox("Show only exact matches", key="show_exact_matches")
209
  with col2_3:
 
 
210
  # Right-align a more prominent reset button
211
  with st.container():
212
  st.markdown("<div style='text-align: right;'>", unsafe_allow_html=True)
213
  if st.button("**Reset Filters**", key="reset_button_row3"):
214
  reset_filters()
215
  st.markdown("</div>", unsafe_allow_html=True)
216
+ with col3_3:
217
+ st.empty()
218
+
219
 
220
  ###########################################
221
  # Helper function for valid project id