BasPH opened a new issue, #49402: URL: https://github.com/apache/airflow/issues/49402
### Apache Airflow version 3.0.0 ### If "Other Airflow 2 version" selected, which one? _No response_ ### What happened? When opening the Airflow 3 graph view, the graph is not displayed fully and not centered, even though it does fit on my screen. I understand it's not always possible to display the full graph nicely, e.g. with huge graphs, but with my small graph I'd expect it to display nicely. This is how it displays:  How I'd expect it to be displayed:  ### What you think should happen instead? _No response_ ### How to reproduce ```python from airflow import DAG from airflow.operators.bash import BashOperator from airflow.operators.empty import EmptyOperator from airflow.utils.task_group import TaskGroup from airflow.utils.trigger_rule import TriggerRule with DAG(dag_id="test"): with TaskGroup(group_id="wait_for_x") as wait_for_x: wait_for_x_local = BashOperator(task_id="wait_for_x_local", bash_command="exit 1") wait_for_x_remote = BashOperator(task_id="wait_for_x_remote", bash_command="echo hello") x_success = EmptyOperator(task_id="x_success", trigger_rule=TriggerRule.ONE_SUCCESS) [wait_for_x_local, wait_for_x_remote] >> x_success wait_for_x >> EmptyOperator(task_id="foobar") ``` ### Operating System MacOS ### Versions of Apache Airflow Providers _No response_ ### Deployment Docker-Compose ### Deployment details _No response_ ### Anything else? Chrome version 134.0.6998.166 2560 x 1440 resolution ### 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]
