Skip to content

Commit b4f5660

Browse files
authored
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
1 parent 77cffbb commit b4f5660

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ export const DagsList = () => {
308308
</HStack>
309309
</VStack>
310310
<ToggleTableDisplay display={display} setDisplay={setDisplay} />
311-
<Box overflow="auto">
311+
<Box overflow="auto" pb={8}>
312312
<DataTable
313313
cardDef={cardDef}
314314
columns={columns}

0 commit comments

Comments
 (0)