atul-astronomer opened a new issue, #55715:
URL: https://github.com/apache/airflow/issues/55715

   ### Apache Airflow version
   
   main (development)
   
   ### If "Other Airflow 2 version" selected, which one?
   
   _No response_
   
   ### What happened?
   
   When user opts to see more dagruns from the drop-down like 25 or 50 and 
click on a dagrun, task name shrinks and gantt progress bar overlaps with 
dagruns
   
   <img width="1373" height="620" alt="Image" 
src="https://github.com/user-attachments/assets/2058d774-f60b-4c16-8d80-7184d4459025";
 />
   
   ### What you think should happen instead?
   
   _No response_
   
   ### How to reproduce
   
   Use below dag and opts to see 25 dagruns from the dropdown
   
   ```python
   import datetime
   
   from airflow.providers.standard.operators.bash import BashOperator
   from airflow.providers.standard.operators.python import PythonOperator
   from airflow.sdk import DAG
   
   
   dag = DAG(
       'test_api_dag',
       start_date=datetime.datetime(2025, 8,25),
       schedule='@daily',
       is_paused_upon_creation=False,
       catchup=True,
   )
   
   hello_task = BashOperator(
       task_id="hello",
       bash_command="echo hello",
       dag=dag
   )
   
   bye_task = BashOperator(
       task_id="bye1",
       bash_command="echo bye",
       dag=dag
   )
   
   hello_again = BashOperator(
       task_id="hello_again",
       bash_command="echo hello_again",
       dag=dag
   )
   
   hello_task >> bye_task >> hello_again
   
   ``` 
   
   ### Operating System
   
   Linux
   
   ### Versions of Apache Airflow Providers
   
   _No response_
   
   ### Deployment
   
   Other
   
   ### 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: commits-unsubscr...@airflow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to