From 94cc7c800c4490a38f864bd6fd7b939967147ecf Mon Sep 17 00:00:00 2001 From: Sultan Iman Date: Thu, 14 Mar 2024 11:06:04 +0100 Subject: [PATCH] Expand pipeline summary block by default --- dlt/helpers/streamlit_app/widgets/summary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlt/helpers/streamlit_app/widgets/summary.py b/dlt/helpers/streamlit_app/widgets/summary.py index c6b4a800df..9f4d8d9b00 100644 --- a/dlt/helpers/streamlit_app/widgets/summary.py +++ b/dlt/helpers/streamlit_app/widgets/summary.py @@ -11,7 +11,7 @@ def pipeline_summary(pipeline: dlt.Pipeline) -> None: st.error("🚨 Cannot load data - SqlClient not available") schema_names = ", ".join(sorted(pipeline.schema_names)) - expander = st.expander("Pipeline info") + expander = st.expander("Pipeline info", expanded=True) expander.markdown(f""" * pipeline name: **{pipeline.pipeline_name}** * destination: **{str(credentials)}** in **{pipeline.destination.destination_description}**