w3robotics commited on
Commit
ea52024
·
verified ·
1 Parent(s): 5d6578f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -26,7 +26,7 @@ with upload_column:
26
  }
27
  """,
28
  ):
29
- st.button("Upload File")
30
 
31
  with delete_column:
32
  with stylable_container(
@@ -42,7 +42,7 @@ with delete_column:
42
  }
43
  """,
44
  ):
45
- st.button("Delete File")
46
 
47
  with browse_column:
48
  with stylable_container(
@@ -58,7 +58,7 @@ with browse_column:
58
  }
59
  """,
60
  ):
61
- st.button("View Folder")
62
 
63
  with recycle_column:
64
  with stylable_container(
@@ -74,7 +74,7 @@ with recycle_column:
74
  }
75
  """,
76
  ):
77
- st.button("Recycle App")
78
 
79
 
80
 
 
26
  }
27
  """,
28
  ):
29
+ st.button("", key='upload')
30
 
31
  with delete_column:
32
  with stylable_container(
 
42
  }
43
  """,
44
  ):
45
+ st.button("", key='delete')
46
 
47
  with browse_column:
48
  with stylable_container(
 
58
  }
59
  """,
60
  ):
61
+ st.button("", key='view')
62
 
63
  with recycle_column:
64
  with stylable_container(
 
74
  }
75
  """,
76
  ):
77
+ st.button("", key='recycle')
78
 
79
 
80