Skip to content

Commit

Permalink
Expand pipeline summary block by default
Browse files Browse the repository at this point in the history
  • Loading branch information
sultaniman committed Mar 14, 2024
1 parent a6dca6b commit 94cc7c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlt/helpers/streamlit_app/widgets/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}**
Expand Down

0 comments on commit 94cc7c8

Please sign in to comment.