This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-1-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit e21835c19d691fc2a1793f3760a943b2d01c216b Author: Andrei Serdiukov <98782177+serdu...@users.noreply.github.com> 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}