devve1 commited on
Commit
dc77bf9
1 Parent(s): 5f71b07

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -403,9 +403,13 @@ if __name__ == '__main__':
403
  st.session_state.df,
404
  num_rows="dynamic",
405
  use_container_width=True,
 
406
  column_config={
 
 
 
407
  "document": st.column_config.TextColumn(
408
- "Documents",
409
  help="Name of the document",
410
  required=True
411
  ),
@@ -422,7 +426,7 @@ if __name__ == '__main__':
422
  ]
423
  ),
424
  "link": st.column_config.LinkColumn(
425
- 'Links',
426
  help='Link to the document',
427
  required=False
428
  ),
 
403
  st.session_state.df,
404
  num_rows="dynamic",
405
  use_container_width=True,
406
+ hide_index=True,
407
  column_config={
408
+ 'icon': st.column_config.ImageColumn(
409
+ 'Document'
410
+ ),
411
  "document": st.column_config.TextColumn(
412
+ "Name",
413
  help="Name of the document",
414
  required=True
415
  ),
 
426
  ]
427
  ),
428
  "link": st.column_config.LinkColumn(
429
+ 'Link',
430
  help='Link to the document',
431
  required=False
432
  ),