ashb commented on code in PR #55857:
URL: https://github.com/apache/airflow/pull/55857#discussion_r2362298191


##########
airflow-core/src/airflow/ui/src/components/PoolBar.tsx:
##########
@@ -42,13 +42,28 @@ export const PoolBar = ({
         const slotValue = pool[key];
         const flexValue = slotValue / totalSlots || 0;
 
+        // Hide empty segments
         if (flexValue === 0) {
           return undefined;
         }
 
+        // NEW: If this segment represents "deferred_slots" and the current 
pool

Review Comment:
   Don't put things like "NEW" or "changed" etc in code comments. As soon as 
the PR is merged the comment is instantly out of date.



-- 
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]

Reply via email to