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

   ### Apache Airflow version
   
   3.0.0a1
   
   ### If "Other Airflow 2 version" selected, which one?
   
   _No response_
   
   ### What happened?
   
   When user trigger a DAG manually, the latest run details are not displayed 
on card/list view.
   
   Manual Trigger:
   
   <img width="1721" alt="Image" 
src="https://github.com/user-attachments/assets/fd3d43aa-9a31-4852-b922-579ab2181b1e";
 />
   
   <img width="1604" alt="Image" 
src="https://github.com/user-attachments/assets/b021aabe-833f-4328-99ec-8e79d2aef53a";
 />
   
   Scheduled Trigger:
   
   <img width="1711" alt="Image" 
src="https://github.com/user-attachments/assets/a7a2a8a3-242b-4f96-92e9-f24c5635ee2d";
 />
   
   <img width="1640" alt="Image" 
src="https://github.com/user-attachments/assets/4373e1f8-511d-4577-9971-1dc0ac1bd0be";
 />
   
   ### What you think should happen instead?
   
   The dagrun details should be displayed on card/list view for manually 
trigger DAG also.
   
   ### How to reproduce
   
   1. Trigger the below DAG with schedule=None and schedule='@daily'
   2. With manual trigger, there are no dagrun details on card/list view.
   
   ```python
   from airflow import DAG
   from airflow.decorators import task
   from datetime import datetime, timedelta
   from airflow.utils.task_group import TaskGroup
   
   
   @task
   def onetwothree():
       return [1, 2, 3]
   
   
   @task
   def consumer(value):
       print(value)
   
   
   with DAG(
       dag_id="with_rename",
       start_date=datetime(1970, 1, 1),
       schedule=None,
       tags=["taskmap"]
   ) as dag:
   
       with TaskGroup("tg"):
           consumer(1)  # consumer
           consumer(2)  # consumer__1
           consumer.expand(value=[1, 2, 3])
   
   ``` 
   
   
   ### 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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to