This is an automated email from the ASF dual-hosted git repository.
bbovenzi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 2064a76d46c Fix Edit Connection dialog missing lazyMount causing JSON
editor infinite loading (#65969)
2064a76d46c is described below
commit 2064a76d46ce1a12cb5f8f72c1977e39eefacfae
Author: Shashwati Bhattacharyaa <[email protected]>
AuthorDate: Wed May 13 01:20:25 2026 +0530
Fix Edit Connection dialog missing lazyMount causing JSON editor infinite
loading (#65969)
Co-authored-by: Shashwati <[email protected]>
---
.../src/airflow/ui/src/pages/Connections/EditConnectionButton.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/airflow-core/src/airflow/ui/src/pages/Connections/EditConnectionButton.tsx
b/airflow-core/src/airflow/ui/src/pages/Connections/EditConnectionButton.tsx
index bb6d5ecd4e7..9c0257f3610 100644
--- a/airflow-core/src/airflow/ui/src/pages/Connections/EditConnectionButton.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/Connections/EditConnectionButton.tsx
@@ -71,7 +71,7 @@ const EditConnectionButton = ({ connection, disabled }:
Props) => {
</IconButton>
</Tooltip>
- <Dialog.Root onOpenChange={handleClose} open={open} size="xl">
+ <Dialog.Root lazyMount onOpenChange={handleClose} open={open} size="xl"
unmountOnExit>
<Dialog.Content backdrop>
<Dialog.Header>
<Heading size="xl">{translate("connections.edit")}</Heading>