-
Notifications
You must be signed in to change notification settings - Fork 16.5k
Labels
area:UIRelated to UI/UX. For Frontend Developers.Related to UI/UX. For Frontend Developers.good first issuekind:bugThis is a clearly a bugThis is a clearly a bug
Milestone
Description
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()
Committer
- I acknowledge that I am a maintainer/committer of the Apache Airflow project.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area:UIRelated to UI/UX. For Frontend Developers.Related to UI/UX. For Frontend Developers.good first issuekind:bugThis is a clearly a bugThis is a clearly a bug