nagasrisai opened a new pull request, #63895:
URL: https://github.com/apache/airflow/pull/63895

   In Airflow 2, the DAG params dropdown was searchable — you could type to 
filter the list to the option you wanted. That capability was lost in Airflow 3 
when the UI migrated to the Chakra-based Select component, which doesn't 
include a search input by default.
   
   Added a small text input at the top of the dropdown content in 
`FieldDropdown.tsx`. As you type, it filters the visible options to only those 
whose label contains the search string (case-insensitive). The full item 
collection is still passed to `Select.Root` so value resolution stays correct — 
only the rendered list is narrowed down. Clearing the input or closing the 
dropdown resets the filter.
   
   Also added a `searchPlaceholder` translation key in `en/components.json` and 
two new test cases in `FieldDropdown.test.tsx` — one checking the search input 
is present, and one verifying that typing "ap" into a four-option string enum 
hides the non-matching options.
   
   Closes #63879


-- 
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]

Reply via email to