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

uranusjr 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 7b422be7df Change margin to padding so first task can be selected 
(#37527)
7b422be7df is described below

commit 7b422be7df23fb08197b5fd09c12e74cef40473a
Author: Victor Chiapaikeo <vchiapai...@gmail.com>
AuthorDate: Tue Feb 20 00:27:00 2024 -0500

    Change margin to padding so first task can be selected (#37527)
---
 airflow/www/static/js/dag/grid/renderTaskRows.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/airflow/www/static/js/dag/grid/renderTaskRows.tsx 
b/airflow/www/static/js/dag/grid/renderTaskRows.tsx
index b32c1b4397..a20953b421 100644
--- a/airflow/www/static/js/dag/grid/renderTaskRows.tsx
+++ b/airflow/www/static/js/dag/grid/renderTaskRows.tsx
@@ -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"

Reply via email to