Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
[autofix.ci] apply automated fixes
  • Loading branch information
autofix-ci[bot] authored Sep 12, 2025
commit ce2f7faeb45e1a20e6b91c9ca936d9236733271b
Original file line number Diff line number Diff line change
Expand Up @@ -288,24 +288,24 @@ const HandleRenderComponent = memo(function HandleRenderComponent({
const handleColorName = connectedEdge
? connectedColor
: uniqueColorCount > 1
? "secondary-foreground"
: "datatype-" + firstUniqueColor;
? "secondary-foreground"
: "datatype-" + firstUniqueColor;

const handleColor = isNullHandle
? dark
? "hsl(var(--accent-gray))"
: "hsl(var(--accent-gray-foreground)"
: connectedEdge
? "hsl(var(--datatype-" + connectedColor + "))"
: uniqueColorCount > 1
? "hsl(var(--secondary-foreground))"
: "hsl(var(--datatype-" + firstUniqueColor + "))";
? "hsl(var(--datatype-" + connectedColor + "))"
: uniqueColorCount > 1
? "hsl(var(--secondary-foreground))"
: "hsl(var(--datatype-" + firstUniqueColor + "))";

const accentForegroundColorName = connectedEdge
? "hsl(var(--datatype-" + connectedColor + "-foreground))"
: uniqueColorCount > 1
? "hsl(var(--input))"
: "hsl(var(--datatype-" + firstUniqueColor + "-foreground))";
? "hsl(var(--input))"
: "hsl(var(--datatype-" + firstUniqueColor + "-foreground))";

const currentFilter = left
? {
Expand Down
Loading