diff --git a/airflow/www/static/js/dag/details/graph/Node.tsx b/airflow/www/static/js/dag/details/graph/Node.tsx index 6ae8489f137f1..5d777b16737a1 100644 --- a/airflow/www/static/js/dag/details/graph/Node.tsx +++ b/airflow/www/static/js/dag/details/graph/Node.tsx @@ -93,6 +93,11 @@ export const BaseNode = ({ [, operatorTextColor] = labelStyle.split(":"); } + const nodeBorderColor = + instance?.state && stateColors[instance.state] + ? `${stateColors[instance.state]}.400` + : "gray.400"; + return ( - + {instance.state} diff --git a/docs/apache-airflow/img/demo_graph_view.png b/docs/apache-airflow/img/demo_graph_view.png index 001ecbe5175c9..9dcbae88a8c2d 100644 Binary files a/docs/apache-airflow/img/demo_graph_view.png and b/docs/apache-airflow/img/demo_graph_view.png differ