pierrejeambrun opened a new issue, #53366:
URL: https://github.com/apache/airflow/issues/53366

   ### Body
   
   If menu options are too big and that there is not fields bellow the menu to 
give some space for expanding the menu, some part of it will be cut off, cf 
screenshot.
   
   Dag code:
   ```python
   from __future__ import annotations
   
   from airflow import DAG
   from airflow.decorators import task
   from airflow.models.param import Param
   
   with DAG(
       "test_dropdown",
       dag_display_name="Test Dropdown",
       catchup=False,
       schedule=None,
       tags=["test"],
       params={
           "task": Param(
               "", type="string", title="Select a Value", enum=["one", "two", 
"three", "four", "five", "six"]
           )
       },
   ) as dag:
   
       @task
       def test_dropdown():
           pass
   
       test_dropdown()
   
   ```
   
   <img width="1904" height="931" alt="Image" 
src="https://github.com/user-attachments/assets/b8667ac8-48c9-4de3-91d5-facc8d620268";
 />
   
   ### Committer
   
   - [x] I acknowledge that I am a maintainer/committer of the Apache Airflow 
project.


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