JAMESPARK3 commited on
Commit
b7a9689
·
verified ·
1 Parent(s): 69ca09d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -555,5 +555,7 @@ else:
555
  cols = st.columns(4)
556
  for i, img_path in enumerate(st.session_state.contents):
557
  with cols[i % 4]:
558
- st.image(img_path, caption=os.path.basename(img_path), use_column_width=True)
 
 
559
 
 
555
  cols = st.columns(4)
556
  for i, img_path in enumerate(st.session_state.contents):
557
  with cols[i % 4]:
558
+ # use_column_width=True를 use_container_width=True로 변경
559
+ st.image(img_path, caption=os.path.basename(img_path), use_container_width=True)
560
+
561