bbovenzi commented on code in PR #44655:
URL: https://github.com/apache/airflow/pull/44655#discussion_r1869975234
##########
airflow/ui/src/pages/DagsList/Dag/Graph/TaskNode.tsx:
##########
@@ -63,7 +65,7 @@ export const TaskNode = ({
<Box>
{/* TODO: replace 'Operator' */}
<Text fontSize="xs" fontWeight="lighter" textTransform="uppercase">
- {isGroup ? "Task Group" : "Operator"}
+ {isGroup ? "Task Group" : nodeType}
Review Comment:
```suggestion
{isGroup ? "Task Group" : operator}
```
Actually the idea was to put the operator here.
--
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]