bbovenzi commented on code in PR #38782:
URL: https://github.com/apache/airflow/pull/38782#discussion_r1557831020
##########
airflow/www/static/js/dag/details/graph/DagNode.tsx:
##########
@@ -126,10 +125,6 @@ const DagNode = ({
label={taskName}
isOpen={isOpen}
isGroup={!!childCount}
- onClick={(e) => {
- e.stopPropagation();
Review Comment:
Yes, it was used to open and close task groups.
We just need to change onClick to:
```
onClick={(e) => {
if (!!childCount) {
e.stopPropagation();
onToggleCollapse();
}
}}
--
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]