Skip to content

Commit

Permalink
Change margin to padding so first task can be selected (#37527)
Browse files Browse the repository at this point in the history
(cherry picked from commit 7b422be)
  • Loading branch information
vchiapaikeo authored and ephraimbuddy committed Feb 20, 2024
1 parent 5ece0dc commit 0efcf87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/www/static/js/dag/grid/renderTaskRows.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,9 @@ const Row = (props: RowProps) => {
label={task.label || task.id || ""}
id={task.id || ""}
isOpen={isOpen}
ml={level * 4 + 4}
pl={level * 4 + 4}
setupTeardownType={task.setupTeardownType}
mr={4}
pr={4}
fontWeight={
isGroup || (task.isMapped && !isParentMapped)
? "bold"
Expand Down

0 comments on commit 0efcf87

Please sign in to comment.