diff --git a/streamlit_app.py b/streamlit_app.py index abfd5fc..a2f3fd9 100644 --- a/streamlit_app.py +++ b/streamlit_app.py @@ -9,7 +9,7 @@ ) st.title("🖱️ Interactive table app") st.write( - """This app shows how you can use the [streamlit-aggrid](STREAMLIT_AGGRID_URL) + f"""This app shows how you can use the [streamlit-aggrid]({STREAMLIT_AGGRID_URL}) Streamlit component in an interactive way so as to display additional content based on user click.""" ) @@ -38,7 +38,7 @@ def aggrid_interactive_table(df: pd.DataFrame): df, enable_enterprise_modules=True, gridOptions=options.build(), - theme="light", + theme="streamlit", update_mode=GridUpdateMode.MODEL_CHANGED, allow_unsafe_jscode=True, )