From 022aae595b1aa5393ec44f9524a721ab482f2fa9 Mon Sep 17 00:00:00 2001 From: Aaron Pham Date: Sat, 1 Feb 2025 16:16:48 -0500 Subject: [PATCH] chore: address emile's comments Signed-off-by: Aaron Pham --- docs/features/graph view.md | 3 ++- quartz/components/Graph.tsx | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/features/graph view.md b/docs/features/graph view.md index 7b2f67857..19f086286 100644 --- a/docs/features/graph view.md +++ b/docs/features/graph view.md @@ -36,6 +36,7 @@ Component.Graph({ opacityScale: 1, // how quickly do we fade out the labels when zooming out? removeTags: [], // what tags to remove from the graph showTags: true, // whether to show tags in the graph + enableRadial: false, // whether to constrain the graph, similar to Obsidian }, globalGraph: { drag: true, @@ -49,7 +50,7 @@ Component.Graph({ opacityScale: 1, removeTags: [], // what tags to remove from the graph showTags: true, // whether to show tags in the graph - enableRadial: true, // Whether to constrain the graph, similar to Obsidian + enableRadial: true, // whether to constrain the graph, similar to Obsidian }, }) ``` diff --git a/quartz/components/Graph.tsx b/quartz/components/Graph.tsx index b49298ca7..e8b462da0 100644 --- a/quartz/components/Graph.tsx +++ b/quartz/components/Graph.tsx @@ -55,7 +55,7 @@ const defaultOptions: GraphOptions = { showTags: true, removeTags: [], focusOnHover: true, - enableRadial: false, + enableRadial: true, }, }