Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -958,7 +958,8 @@ def side():
|
|
| 958 |
if matching_trustbuilders:
|
| 959 |
st.write("### Result:")
|
| 960 |
# Join the matching trustbuilders into a bullet list
|
| 961 |
-
|
|
|
|
| 962 |
else:
|
| 963 |
st.write("No TrustBuilders found matching the criteria.")
|
| 964 |
|
|
|
|
| 958 |
if matching_trustbuilders:
|
| 959 |
st.write("### Result:")
|
| 960 |
# Join the matching trustbuilders into a bullet list
|
| 961 |
+
escaped_trustbuilders = [tb.replace('$', '\\$') for tb in matching_trustbuilders]
|
| 962 |
+
st.markdown("\n".join([f"- {tb}" for tb in escaped_trustbuilders]))
|
| 963 |
else:
|
| 964 |
st.write("No TrustBuilders found matching the criteria.")
|
| 965 |
|