Skip to content

Commit a9b526e

Browse files
authored
(feat) small dashboard improvements (#3450)
* enables child tables by default * renames to internal tables
1 parent c678d35 commit a9b526e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dlt/_workspace/helpers/dashboard/dlt_dashboard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1385,7 +1385,7 @@ def ui_controls(mo_cli_arg_with_test_identifiers: bool):
13851385
label=f"<small>{strings.ui_show_dlt_tables}</small>"
13861386
)
13871387
dlt_schema_show_child_tables: mo.ui.switch = mo.ui.switch(
1388-
label=f"<small>{strings.ui_show_child_tables}</small>", value=False
1388+
label=f"<small>{strings.ui_show_child_tables}</small>", value=True
13891389
)
13901390
dlt_schema_show_row_counts: mo.ui.run_button = mo.ui.run_button(
13911391
label=f"<small>{strings.ui_load_row_counts}</small>"

dlt/_workspace/helpers/dashboard/strings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
schema_show_raw_yaml_text = "Show raw schema as YAML"
126126

127127
# Schema UI controls
128-
ui_show_dlt_tables = "Show `_dlt` tables"
128+
ui_show_dlt_tables = "Show internal tables"
129129
ui_show_child_tables = "Show child tables"
130130
ui_load_row_counts = "Load row counts"
131131
ui_show_dlt_columns = "Show `_dlt` columns"

tests/e2e/helpers/dashboard/test_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def test_simple_incremental_pipeline(page: Page, simple_incremental_pipeline: An
193193
page.get_by_role("button", name="Run Query").click()
194194

195195
# enable dlt tables
196-
page.get_by_role("switch", name="Show _dlt tables").check()
196+
page.get_by_role("switch", name="Show internal tables").check()
197197

198198
# state page
199199
_open_section(page, "state")

0 commit comments

Comments
 (0)