I am trying to prevent my users from being able to download files from my streamlit app. How do I disable the in-built download button on every displayed table.
Hello,
Did you try :
st.markdown(
"""
<style>
[data-testid="stElementToolbar"] {
display: none;
}
</style>
""",
unsafe_allow_html=True
)
Thank you @Faltawer , this worked.
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.