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 19ee4fe519 Fix graph task state border color (#38084)
19ee4fe519 is described below

commit 19ee4fe519cba2b37548930fbaabb8181e12a294
Author: Brent Bovenzi <br...@astronomer.io>
AuthorDate: Tue Mar 12 16:16:49 2024 -0400

    Fix graph task state border color (#38084)
---
 airflow/www/static/js/dag/details/graph/DagNode.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/www/static/js/dag/details/graph/DagNode.tsx 
b/airflow/www/static/js/dag/details/graph/DagNode.tsx
index 06809249ed..ec04f73c17 100644
--- a/airflow/www/static/js/dag/details/graph/DagNode.tsx
+++ b/airflow/www/static/js/dag/details/graph/DagNode.tsx
@@ -80,7 +80,7 @@ const DagNode = ({
 
   const nodeBorderColor =
     instance?.state && stateColors[instance.state]
-      ? `${stateColors[instance.state]}.400`
+      ? stateColors[instance.state]
       : "gray.400";
 
   return (

Reply via email to