Update app.py
Browse files
app.py
CHANGED
@@ -82,7 +82,7 @@ def main():
|
|
82 |
st.session_state.current_file = file
|
83 |
st.session_state.file_content = load_file(file)
|
84 |
with col2:
|
85 |
-
st.markdown(
|
86 |
with col3:
|
87 |
if st.button("📂", key="edit_"+file):
|
88 |
st.session_state.current_file = file
|
|
|
82 |
st.session_state.current_file = file
|
83 |
st.session_state.file_content = load_file(file)
|
84 |
with col2:
|
85 |
+
st.markdown(get_download_link(file), unsafe_allow_html=True)
|
86 |
with col3:
|
87 |
if st.button("📂", key="edit_"+file):
|
88 |
st.session_state.current_file = file
|