fufuShih opened a new pull request, #65095: URL: https://github.com/apache/airflow/pull/65095
## Problem In `ConnectionForm`, the default overflow behavior of the Accordion.Root component clips child elements that extend beyond the container boundary, causing dropdown menus inside to not be fully visible. related: #65085 ## Solution Added `overflow="visible"` to the `Accordion.Root` so that dropdown menus can render outside the container boundary without being clipped. ## Files Changed Added overflow="visible" to `Accordion.Root` in ConnectionForm https://github.com/apache/airflow/blob/f13b71371da3ae1ee5bb0b60d48fe535fa0abb26/airflow-core/src/airflow/ui/src/pages/Connections/ConnectionForm.tsx#L205-L212 After ```tsx <Accordion.Root collapsible defaultValue={["standardFields"]} mb={4} mt={4} overflow="visible" size="lg" variant="enclosed" > ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
