This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-7-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit ab036e9a305668ce2b63a9c59a3e84b484b50a5c Author: Daniel Standish <[email protected]> AuthorDate: Fri Aug 4 01:12:26 2023 -0700 Use arrow with no circle for setup / teardown (#33098) Just seems easier to see. (cherry picked from commit b57fc45861a7527541e684c00333d983290a88c0) --- airflow/www/static/js/dag/details/graph/Node.tsx | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/airflow/www/static/js/dag/details/graph/Node.tsx b/airflow/www/static/js/dag/details/graph/Node.tsx index 25827f2595..f2d6f92c09 100644 --- a/airflow/www/static/js/dag/details/graph/Node.tsx +++ b/airflow/www/static/js/dag/details/graph/Node.tsx @@ -28,10 +28,7 @@ import { getGroupAndMapSummary, hoverDelay } from "src/utils"; import Tooltip from "src/components/Tooltip"; import InstanceTooltip from "src/dag/InstanceTooltip"; import { useContainerRef } from "src/context/containerRef"; -import { - MdOutlineArrowCircleUp, - MdOutlineArrowCircleDown, -} from "react-icons/md"; +import { ImArrowUpRight2, ImArrowDownRight2 } from "react-icons/im"; export interface CustomNodeProps { label: string; @@ -145,10 +142,10 @@ export const BaseNode = ({ {taskName} </Text> {setupTeardownType === "setup" && ( - <MdOutlineArrowCircleUp size={18} color={colors.gray[800]} /> + <ImArrowUpRight2 size={15} color={colors.gray[800]} /> )} {setupTeardownType === "teardown" && ( - <MdOutlineArrowCircleDown size={18} color={colors.gray[800]} /> + <ImArrowDownRight2 size={15} color={colors.gray[800]} /> )} </Flex> {!!instance && instance.state && (
