diogotrodrigues commented on code in PR #47994:
URL: https://github.com/apache/airflow/pull/47994#discussion_r2030222940


##########
airflow-core/src/airflow/ui/src/layouts/Details/Grid/TaskNames.tsx:
##########
@@ -86,12 +93,20 @@ export const TaskNames = ({ nodes }: Props) => {
             }}
           >
             <TaskName
+              display="-webkit-box"
               fontSize="sm"
               fontWeight="normal"
               isMapped={Boolean(node.is_mapped)}
               label={node.label}
+              overflow="hidden"
               paddingLeft={node.depth * 3 + 2}
               setupTeardownType={node.setup_teardown_type}
+              style={{
+                WebkitBoxOrient: "vertical",
+                WebkitLineClamp: 1,
+              }}
+              title={node.label}

Review Comment:
   Its there so when you hover over the ellipsis it shows that label with the 
full name like this:
   
   <img width="2560" alt="Screenshot 2025-04-06 at 19 19 09" 
src="https://github.com/user-attachments/assets/b8a2ca1a-b4a2-4534-85a0-b8fb97224ee3";
 />
   



-- 
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: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to