Skip to content

UI - Trigger form dropdown menus are truncated #53366

@pierrejeambrun

Description

@pierrejeambrun

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:

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()
Image

Committer

  • I acknowledge that I am a maintainer/committer of the Apache Airflow project.

Metadata

Metadata

Labels

area:UIRelated to UI/UX. For Frontend Developers.good first issuekind:bugThis is a clearly a bug

Type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions