diff --git a/manifest.json b/manifest.json index e0f6f45..32664fa 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "3d-graph", "name": "3D Graph", - "version": "1.0.7", + "version": "1.0.8", "description": "A 3D Graph for Obsidian", "author": "Hananoshika Yomaru", "authorUrl": "https://github.com/HananoshikaYomaru", diff --git a/package.json b/package.json index ae493f2..8fd87f0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "3d-graph", - "version": "1.0.8", + "version": "1.0.9", "description": "A 3D graph for Obsidian", "main": "main.js", "scripts": { diff --git a/src/views/graph/ForceGraph.ts b/src/views/graph/ForceGraph.ts index d49e82f..419918e 100644 --- a/src/views/graph/ForceGraph.ts +++ b/src/views/graph/ForceGraph.ts @@ -55,7 +55,6 @@ export class ForceGraph { } private createGraph() { - const settings = this.plugin.getSettings(); this.createInstance(); this.createNodes(); this.createLinks(); @@ -224,7 +223,6 @@ export class ForceGraph { }; public handleSettingsChanged = (data: StateChange) => { - const settings = this.plugin.getSettings(); // if the filter settings is change if ( data.currentPath === "filters.searchResult" ||