csp33 opened a new issue, #36481: URL: https://github.com/apache/airflow/issues/36481
### Apache Airflow version 2.8.0 ### If "Other Airflow 2 version" selected, which one? _No response_ ### What happened? After upgrading to Airflow 2.8.0, I've found out that the `Details` tab is empty for mapped tasks <img width="1715" alt="image" src="https://github.com/apache/airflow/assets/28935464/38b4d53a-47d5-4c6c-bb82-60f317d62ae5"> ### What you think should happen instead? Details tab should appear, just like before ### How to reproduce 1. Run the following DAG ```python with DAG( dag_id="test_mapped_tasks_ui", schedule=None, catchup=False, max_active_runs=1, render_template_as_native_obj=True, ) as dag: @task def my_task(idx: int) -> None: print(f"Task {idx} done") my_task.expand(idx=list(range(1, 10))) ``` 2. Click in the `Details` tab of `my_task` ### Operating System Airflow in Kubernetes ### Versions of Apache Airflow Providers _No response_ ### Deployment Official Apache Airflow Helm Chart ### 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]
