Spaces:
Running
Running
change the divider; remove developer tool
Browse files
app.py
CHANGED
@@ -233,8 +233,8 @@ if st.session_state['display_results']:
|
|
233 |
|
234 |
summary_container = st.empty()
|
235 |
|
236 |
-
st.header("Results")
|
237 |
st.divider()
|
|
|
238 |
|
239 |
# display matched results
|
240 |
for pid, match_score in st.session_state['above_thr_sorted']:
|
@@ -271,6 +271,7 @@ if st.session_state['display_results']:
|
|
271 |
# display summary tab
|
272 |
if st.session_state['count_checked'] > 0:
|
273 |
with summary_container.container():
|
|
|
274 |
st.header('Summary')
|
275 |
if st.button('Compare Products'):
|
276 |
|
@@ -316,6 +317,6 @@ else:
|
|
316 |
except NameError:
|
317 |
pass
|
318 |
|
319 |
-
|
320 |
-
with st.expander("developer tool"):
|
321 |
-
|
|
|
233 |
|
234 |
summary_container = st.empty()
|
235 |
|
|
|
236 |
st.divider()
|
237 |
+
st.header("Results")
|
238 |
|
239 |
# display matched results
|
240 |
for pid, match_score in st.session_state['above_thr_sorted']:
|
|
|
271 |
# display summary tab
|
272 |
if st.session_state['count_checked'] > 0:
|
273 |
with summary_container.container():
|
274 |
+
st.divider()
|
275 |
st.header('Summary')
|
276 |
if st.button('Compare Products'):
|
277 |
|
|
|
317 |
except NameError:
|
318 |
pass
|
319 |
|
320 |
+
# ### Uncomment if you want to debug states
|
321 |
+
# with st.expander("developer tool"):
|
322 |
+
# st.json(st.session_state)
|