Skip to content

Commit 76f7850

Browse files
Update Graph.tsx
Added `excludeTags: []`
1 parent 4f0e421 commit 76f7850

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

quartz/components/Graph.tsx

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export interface D3Config {
1818
removeTags: string[]
1919
showTags: boolean
2020
focusOnHover?: boolean
21+
excludeTags: string[]
2122
}
2223

2324
interface GraphOptions {
@@ -39,6 +40,7 @@ const defaultOptions: GraphOptions = {
3940
showTags: true,
4041
removeTags: [],
4142
focusOnHover: false,
43+
excludeTags: [],
4244
},
4345
globalGraph: {
4446
drag: true,
@@ -53,6 +55,7 @@ const defaultOptions: GraphOptions = {
5355
showTags: true,
5456
removeTags: [],
5557
focusOnHover: true,
58+
excludeTags: [],
5659
},
5760
}
5861

0 commit comments

Comments
 (0)