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

jscheffl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new b4f56607481 chore(ui): add bottom padding to DAG list (#55415)
b4f56607481 is described below

commit b4f566074810eb78fb33056fec24bdb2e89f0639
Author: Andrei Serdiukov <[email protected]>
AuthorDate: Wed Sep 10 00:21:32 2025 +0300

    chore(ui): add bottom padding to DAG list (#55415)
    
    The last DAG in the list was sticking to the bottom of the container, which 
sometimes made it difficult to see other DAGs
---
 airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx 
b/airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx
index 7c3aca6d4ad..e3f0a01ec87 100644
--- a/airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx
@@ -308,7 +308,7 @@ export const DagsList = () => {
         </HStack>
       </VStack>
       <ToggleTableDisplay display={display} setDisplay={setDisplay} />
-      <Box overflow="auto">
+      <Box overflow="auto" pb={8}>
         <DataTable
           cardDef={cardDef}
           columns={columns}

Reply via email to