Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -196,23 +196,19 @@ with col3_2:
|
|
196 |
with col4_2:
|
197 |
st.empty()
|
198 |
with col5_2:
|
199 |
-
|
200 |
-
|
201 |
|
202 |
###########################################
|
203 |
# Filter Controls - Row 3 (Remaining Filter)
|
204 |
###########################################
|
205 |
-
|
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 |
-
st.empty()
|
213 |
-
with col4_3:
|
214 |
-
st.empty()
|
215 |
-
with col5_3:
|
216 |
# Right-align a more prominent reset button
|
217 |
with st.container():
|
218 |
st.markdown("<div style='text-align: right;'>", unsafe_allow_html=True)
|
|
|
196 |
with col4_2:
|
197 |
st.empty()
|
198 |
with col5_2:
|
199 |
+
st.empty()
|
200 |
+
|
201 |
|
202 |
###########################################
|
203 |
# Filter Controls - Row 3 (Remaining Filter)
|
204 |
###########################################
|
205 |
+
col1_2, col2_2, col3_2 = 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)
|