From 272b4ede758a7cc87c112b02977f304f18a3532c Mon Sep 17 00:00:00 2001 From: Aarthy Adityan Date: Thu, 13 Jun 2024 13:40:45 -0400 Subject: [PATCH] fix(ui): fix error in create qc schema dialog --- testgen/ui/views/connections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")