Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix error in Create QC schema dialog #9

Merged
merged 2 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading