Skip to content

Commit

Permalink
fix(ui): fix error in create qc schema dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
aarthy-dk committed Jun 13, 2024
1 parent dd8b05f commit 272b4ed
Showing 1 changed file with 1 addition and 1 deletion.
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 272b4ed

Please sign in to comment.