Skip to content

Commit

Permalink
feat(ui/graph): not change node's border color when selected
Browse files Browse the repository at this point in the history
  • Loading branch information
hainenber committed Sep 21, 2023
1 parent 700e0e8 commit 9be5ca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www/static/js/dag/details/graph/Node.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export const BaseNode = ({
<Box
borderRadius={5}
borderWidth={1.5}
borderColor={isSelected ? "blue.400" : nodeBorderColor}
borderColor={nodeBorderColor}
bg={isSelected ? "blue.50" : bg}
height={`${height}px`}
width={`${width}px`}
Expand Down

0 comments on commit 9be5ca8

Please sign in to comment.