This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 95adaecad19988cbb84c92bf4d3852c6500a78f8
Author: Brent Bovenzi <[email protected]>
AuthorDate: Mon Apr 28 10:51:45 2025 -0400

    Add counts to pool bar (#49894)
    
    (cherry picked from commit e9577d8634ccbd91cb6d0fef3bd1e59ff997f632)
---
 airflow-core/src/airflow/ui/src/pages/Pools/PoolBar.tsx | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/airflow-core/src/airflow/ui/src/pages/Pools/PoolBar.tsx 
b/airflow-core/src/airflow/ui/src/pages/Pools/PoolBar.tsx
index 22bf9a0c43a..725c6aa7f6f 100644
--- a/airflow-core/src/airflow/ui/src/pages/Pools/PoolBar.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/Pools/PoolBar.tsx
@@ -85,11 +85,13 @@ const PoolBar = ({ pool }: PoolBarProps) => (
                 alignItems="center"
                 bg={`${color}.solid`}
                 flex={flexValue}
+                gap={0.5}
                 h="100%"
                 justifyContent="center"
                 position="relative"
               >
                 {icon}
+                {slotValue}
               </Flex>
             </Tooltip>
           );

Reply via email to