Update app.py
Browse files
app.py
CHANGED
|
@@ -57,7 +57,7 @@ for i in range(st.session_state.index, min(st.session_state.index + display_limi
|
|
| 57 |
cityOrState, link, linkType = item['Country'], item['link'], item['linkType']
|
| 58 |
liked = likes_history.get(str(i), 0)
|
| 59 |
|
| 60 |
-
with st.expander(f"{
|
| 61 |
st.markdown(f"[{link}]({link})")
|
| 62 |
like_button = st.button("π Like", key=f"like_{i}")
|
| 63 |
if like_button:
|
|
|
|
| 57 |
cityOrState, link, linkType = item['Country'], item['link'], item['linkType']
|
| 58 |
liked = likes_history.get(str(i), 0)
|
| 59 |
|
| 60 |
+
with st.expander(f"{Country} - {linkType} π"):
|
| 61 |
st.markdown(f"[{link}]({link})")
|
| 62 |
like_button = st.button("π Like", key=f"like_{i}")
|
| 63 |
if like_button:
|