diff --git a/pyproject.toml b/pyproject.toml index 6da8ee0..e12937e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta" [project] name = "data-ops-testgen" -version = "2.1.8" +version = "2.1.9" description = "DataKitchen Inc. Data Quality Engine" urls = { "homepage" = "https://datakitchen.io" } authors = [ @@ -242,7 +242,7 @@ omit = ["tests/*", "templates/*"] skip_empty=true [tool.bumpver] -current_version = "2.1.8" +current_version = "2.1.9" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "release: {old_version} -> {new_version}" commit = true diff --git a/testgen/ui/views/connections.py b/testgen/ui/views/connections.py index f16654f..5ae7736 100644 --- a/testgen/ui/views/connections.py +++ b/testgen/ui/views/connections.py @@ -78,7 +78,7 @@ def render(self) -> None: def show_create_qc_schema_modal(modal, selected_connection): with modal.container(): fm.render_modal_header("Create QC Utility Schema", selected_connection["project_qc_schema"]) - with st.form(clear_on_submit=False): + with st.form("Create QC Utility Schema", clear_on_submit=False): skip_schema_creation = st.toggle("Skip schema creation -- create utility functions in existing QC Schema") skip_granting_privileges = st.toggle("Skip granting privileges") db_user = st.text_input(label="Admin db user", max_chars=40, placeholder="Optional Field")