tirkarthi opened a new issue, #33693: URL: https://github.com/apache/airflow/issues/33693
### Apache Airflow version main (development) ### What happened 1. There was support added to configure UI elements in graph view in https://github.com/apache/airflow/issues/31949 2. Long custom operator names overflow out of the box. Meanwhile long task id are truncated with ellipsis. I guess same could be done by removing width attribute that has "fit-content" and "noOfLines" should be added. Originally wrapped before commit :  main :  ### What you think should happen instead _No response_ ### How to reproduce Sample dag to reproduce the issue in UI ```python from datetime import datetime from airflow.decorators import dag, task from airflow.models.baseoperator import BaseOperator from airflow.operators.bash import BashOperator class HelloOperator(BashOperator): custom_operator_name = "SampleLongNameOfOperator123456789" @dag(dag_id="gh32757", start_date=datetime(2023, 1, 1), catchup=False) def mydag(): bash = BashOperator(task_id="t1", bash_command="echo hello") hello = HelloOperator(task_id="SampleLongTaskId1234567891234890", bash_command="echo test") bash2 = BashOperator(task_id="t3", bash_command="echo bye") bash >> hello >> bash2 mydag() ``` ``` ### Operating System Ubuntu ### Versions of Apache Airflow Providers _No response_ ### Deployment Other ### Deployment details _No response_ ### Anything else _No response_ ### Are you willing to submit PR? - [X] 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]
