Tomi-1997 opened a new pull request, #56902: URL: https://github.com/apache/airflow/pull/56902
Fixes the [ui blue screen](https://github.com/apache/airflow/issues/56059) issue when hovering a task named 'root'. ## Problem 1. On mouse enter event on an element, all divs are queried for a matching id 2. The dag task's div are created with the same id as the label 3. Other elements in the page could have the same id ('root', for example)  ## Solution Add 'task' prefix to the text & icon div elements. ``` id={`task-${taskId.replaceAll(".", "-")}`} ```  ## Testing Tested on chrome, firefox and edge. -- 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]
