From d549f11ae118c3e97c91e78fcb287fd211d5352a Mon Sep 17 00:00:00 2001 From: alemi Date: Tue, 3 Oct 2023 02:36:55 +0200 Subject: [PATCH] fix: lower mass --- dist/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.html b/dist/index.html index 58e5e43..55d24b4 100644 --- a/dist/index.html +++ b/dist/index.html @@ -60,7 +60,7 @@ nodes: nodes, edges: edges, }; - const options = { edges: { dashes: true, arrows: 'to' }, nodes: { mass: 3, color: "#bf616a", shape: "box" }}; + const options = { edges: { dashes: true, arrows: 'to' }, nodes: { mass: 2, color: "#bf616a", shape: "box" }}; const network = new vis.Network(container, data, options); document.getElementById("loader").remove(); }))