Skip to content

Commit 07e1677

Browse files
committed
Merge remote-tracking branch 'quartz/v4'
2 parents f57fcca + 244801a commit 07e1677

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

quartz/components/scripts/graph.inline.ts

+7
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,13 @@ async function renderGraph(container: string, fullSlug: FullSlug) {
282282
// @ts-ignore
283283
.call(drag(simulation))
284284

285+
// make tags hollow circles
286+
node
287+
.filter((d) => d.id.startsWith("tags/"))
288+
.attr("stroke", color)
289+
.attr("stroke-width", 2)
290+
.attr("fill", "var(--light)")
291+
285292
// draw labels
286293
const labels = graphNode
287294
.append("text")

0 commit comments

Comments
 (0)