From 9348449cf48bf99929ddc2d6dff82acbc83c5ce3 Mon Sep 17 00:00:00 2001
From: Dorian Goepp <dorian.goepp@gmail.com>
Date: Tue, 20 Aug 2019 15:35:10 +0200
Subject: [PATCH] remove unnused variable

---
 src/GraphVisJs/Graph.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/GraphVisJs/Graph.js b/src/GraphVisJs/Graph.js
index cbe5051..43c4e77 100644
--- a/src/GraphVisJs/Graph.js
+++ b/src/GraphVisJs/Graph.js
@@ -20,7 +20,7 @@ export class Graph extends React.Component {
     };
     var options = parseData.options;
     options.nodes = { font: { color : "white"}};
-    var network = new vis.Network(this.ref.current, data, options);
+    new vis.Network(this.ref.current, data, options);
   }
 
   componentDidMount() {
-- 
GitLab