We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f0e421 commit 76f7850Copy full SHA for 76f7850
quartz/components/Graph.tsx
@@ -18,6 +18,7 @@ export interface D3Config {
18
removeTags: string[]
19
showTags: boolean
20
focusOnHover?: boolean
21
+ excludeTags: string[]
22
}
23
24
interface GraphOptions {
@@ -39,6 +40,7 @@ const defaultOptions: GraphOptions = {
39
40
showTags: true,
41
removeTags: [],
42
focusOnHover: false,
43
+ excludeTags: [],
44
},
45
globalGraph: {
46
drag: true,
@@ -53,6 +55,7 @@ const defaultOptions: GraphOptions = {
53
55
54
56
57
focusOnHover: true,
58
59
60
61
0 commit comments