Skip to content

Commit

Permalink
Merge pull request #9 from DataKitchen/release/2.1.9
Browse files Browse the repository at this point in the history
Fix error in Create QC schema dialog
  • Loading branch information
aarthy-dk authored Jun 13, 2024
2 parents dd8b05f + 0557fc8 commit e05cdca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion testgen/ui/views/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit e05cdca

Please sign in to comment.