Re: [I] Center graph view within box [airflow]

2025-05-19 Thread via GitHub


github-actions[bot] closed issue #49402: Center graph view within box
URL: https://github.com/apache/airflow/issues/49402


-- 
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]



Re: [I] Center graph view within box [airflow]

2025-05-19 Thread via GitHub


github-actions[bot] commented on issue #49402:
URL: https://github.com/apache/airflow/issues/49402#issuecomment-2892558820

   This issue has been closed because it has not received response from the 
issue author.


-- 
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]



Re: [I] Center graph view within box [airflow]

2025-05-08 Thread via GitHub


github-actions[bot] commented on issue #49402:
URL: https://github.com/apache/airflow/issues/49402#issuecomment-2864751866

   This issue has been automatically marked as stale because it has been open 
for 14 days with no response from the author. It will be closed in next 7 days 
if no further activity occurs from the issue author.


-- 
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]



Re: [I] Center graph view within box [airflow]

2025-04-18 Thread via GitHub


aritra24 commented on issue #49402:
URL: https://github.com/apache/airflow/issues/49402#issuecomment-2815880716

   @BasPH you've to click on the fit view button at the bottom left. If that's 
not what you're talking about let me know. 


-- 
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]



Re: [I] Center graph view within box [airflow]

2025-04-17 Thread via GitHub


jsjasonseba commented on issue #49402:
URL: https://github.com/apache/airflow/issues/49402#issuecomment-2813477069

   Hi @BasPH , I tested this on my setup and the graph centered nicely for me. 
Can you provide specific image tag you are using?


-- 
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]



[I] Center graph view within box [airflow]

2025-04-17 Thread via GitHub


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:
   
   
![Image](https://github.com/user-attachments/assets/7cc9c630-6447-43ba-86a7-5579c582d4c5)
   
   How I'd expect it to be displayed:
   
   
![Image](https://github.com/user-attachments/assets/cbe12761-e494-4390-a132-ca390a713fa6)
   
   ### 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]