Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -668,7 +668,7 @@ def main():
|
|
| 668 |
cols = st.columns(4)
|
| 669 |
for i, p in enumerate(recs[:4]):
|
| 670 |
with cols[i % 4]:
|
| 671 |
-
if "image" in p: st.image(p["image"],
|
| 672 |
st.markdown(f"**{p['name']}**"); st.caption(f"タグ: {', '.join(p['tags'])}")
|
| 673 |
|
| 674 |
st.subheader("4) 評価")
|
|
|
|
| 668 |
cols = st.columns(4)
|
| 669 |
for i, p in enumerate(recs[:4]):
|
| 670 |
with cols[i % 4]:
|
| 671 |
+
if "image" in p: st.image(p["image"], use_container_width=True)
|
| 672 |
st.markdown(f"**{p['name']}**"); st.caption(f"タグ: {', '.join(p['tags'])}")
|
| 673 |
|
| 674 |
st.subheader("4) 評価")
|