Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Datasets triggered run modal is not scrollable #27936

Closed
1 of 2 tasks
jyotsa09 opened this issue Nov 26, 2022 · 1 comment · Fixed by #27965
Closed
1 of 2 tasks

Datasets triggered run modal is not scrollable #27936

jyotsa09 opened this issue Nov 26, 2022 · 1 comment · Fixed by #27965
Labels
area:UI Related to UI/UX. For Frontend Developers. kind:bug This is a clearly a bug

Comments

@jyotsa09
Copy link

jyotsa09 commented Nov 26, 2022

Apache Airflow version

main (development)

What happened

Datasets modal which used to display triggered runs is not scrollable even if there are records
2022-11-26 12 03 26

What you think should happen instead

It should be scrollable if there are records to display

How to reproduce

  1. trigger a datasets dag with multiple triggered runs
  2. click on datasets
  3. click on uri which have multiple triggered runs

DAG-

from airflow import Dataset, DAG
from airflow.operators.python import PythonOperator
from datetime import datetime


fan_out = Dataset("fan_out")
fan_in = Dataset("fan_in")

# the leader
with DAG(
    dag_id="momma_duck", start_date=datetime(1970, 1, 1), schedule_interval=None
) as leader:

    PythonOperator(
        task_id="has_outlet", python_callable=lambda: None, outlets=[fan_out]
    )

# the many
for i in range(1, 40):
    with DAG(
        dag_id=f"duckling_{i}", start_date=datetime(1970, 1, 1), schedule=[fan_out]
    ) as duck:

        PythonOperator(
            task_id="has_outlet", python_callable=lambda: None, outlets=[fan_in]
        )
    globals()[f"duck_{i}"] = duck


# the straggler
with DAG(
    dag_id="straggler_duck", start_date=datetime(1970, 1, 1), schedule=[fan_in]
) as straggler:

    PythonOperator(task_id="has_outlet", python_callable=lambda: None)

Operating System

mac os

Versions of Apache Airflow Providers

No response

Deployment

Virtualenv installation

Deployment details

No response

Anything else

No response

Are you willing to submit PR?

  • Yes I am willing to submit a PR!

Code of Conduct

@jyotsa09 jyotsa09 added area:core kind:bug This is a clearly a bug labels Nov 26, 2022
@jyotsa09
Copy link
Author

cc @bbovenzi

@bbovenzi bbovenzi added area:UI Related to UI/UX. For Frontend Developers. and removed area:core labels Nov 28, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:UI Related to UI/UX. For Frontend Developers. kind:bug This is a clearly a bug
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants