jyotsa09 opened a new issue, #27936:
URL: https://github.com/apache/airflow/issues/27936
### Apache Airflow version
main (development)
### What happened
Datasets modal which used to display triggered runs is not scrollable even
if there are records
![Uploading 2022-11-26 12.03.26.gif…]()
### 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
- [X] I agree to follow this project's [Code of
Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
--
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]