Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -957,10 +957,12 @@ def side():
|
|
| 957 |
# Display the first matching trustbuilder
|
| 958 |
if matching_trustbuilders:
|
| 959 |
st.write("### Result:")
|
| 960 |
-
|
|
|
|
| 961 |
else:
|
| 962 |
st.write("No TrustBuilders found matching the criteria.")
|
| 963 |
|
|
|
|
| 964 |
|
| 965 |
# UI for saving TrustBuilders
|
| 966 |
st.subheader("Save TrustBuilders®")
|
|
|
|
| 957 |
# Display the first matching trustbuilder
|
| 958 |
if matching_trustbuilders:
|
| 959 |
st.write("### Result:")
|
| 960 |
+
# Join the matching trustbuilders into a bullet list
|
| 961 |
+
st.markdown("\n".join([f"- {tb}" for tb in matching_trustbuilders]))
|
| 962 |
else:
|
| 963 |
st.write("No TrustBuilders found matching the criteria.")
|
| 964 |
|
| 965 |
+
|
| 966 |
|
| 967 |
# UI for saving TrustBuilders
|
| 968 |
st.subheader("Save TrustBuilders®")
|