Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Sep 19, 2024
1 parent 64bf784 commit 3723a0e
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions dashboard/components/DdlGraph.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ export default function DdlGraph({
}

text
.attr("fill", "black")
.text(({ ddl_name, schema_name }) => `${schema_name}.${ddl_name}`)
.attr("font-family", "inherit")
.attr("text-anchor", "middle")
.attr("dx", ddlNameMarginX)
.attr("dy", ddlNameMarginY)
.attr("fill", "black")
.attr("font-size", 12)
.attr("fill", "black")
.text(({ ddl_name, schema_name }) => `${schema_name}.${ddl_name}`)
.attr("font-family", "inherit")
.attr("text-anchor", "middle")
.attr("dx", ddlNameMarginX)
.attr("dy", ddlNameMarginY)
.attr("fill", "black")
.attr("font-size", 12)
}

// Render ddl node
Expand All @@ -114,11 +114,11 @@ export default function DdlGraph({
})

circle
.attr("cx", ddlMarginX / 2)
.attr("cy", ddlMarginY / 2)
.attr("fill", "white")
.attr("stroke-width", 1)
.attr("stroke", theme.colors.gray[500])
.attr("cx", ddlMarginX / 2)
.attr("cy", ddlMarginY / 2)
.attr("fill", "white")
.attr("stroke-width", 1)
.attr("stroke", theme.colors.gray[500])
}
}

Expand Down

0 comments on commit 3723a0e

Please sign in to comment.