aboutsummaryrefslogtreecommitdiff
path: root/react-frontend/src/components/Visualization.js
diff options
context:
space:
mode:
authorMichael Foiani <sotech117@michaels-mbp-3.lan>2021-04-18 01:31:20 -0400
committerMichael Foiani <sotech117@michaels-mbp-3.lan>2021-04-18 01:31:20 -0400
commit4cfdb31be3697565e5c4ae95cdc4b60161bd4e84 (patch)
treebfb480708605c0d338e2dd84d18e25ea92197877 /react-frontend/src/components/Visualization.js
parent6b5037e4e03cd44f79bb1d3460e0e45c6d7b6541 (diff)
Have a good working canvas now by limiting the results shown.
Diffstat (limited to 'react-frontend/src/components/Visualization.js')
-rw-r--r--react-frontend/src/components/Visualization.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/react-frontend/src/components/Visualization.js b/react-frontend/src/components/Visualization.js
index 2016129..1975e86 100644
--- a/react-frontend/src/components/Visualization.js
+++ b/react-frontend/src/components/Visualization.js
@@ -32,7 +32,7 @@ function Visualization(props) {
nodes.push({
id: hub.id,
label: hub.name,
- size: hub.suspicionScore * 10
+ size: hub.suspicionScore
});
}
});