From 418b1ff544a22efd35506d52489c65996ebb2870 Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Thu, 7 Jul 2016 13:25:22 +1200 Subject: [PATCH] fix(ui): fix display issue with multiple nodes in Swarm view --- app/components/swarm/swarmController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/swarm/swarmController.js b/app/components/swarm/swarmController.js index a12b238bf..840c6281d 100644 --- a/app/components/swarm/swarmController.js +++ b/app/components/swarm/swarmController.js @@ -42,7 +42,7 @@ angular.module('swarm', []) var node_offset = 4; for (i = 0; i < node_count; i++) { extractNodeInfo(info, node_offset); - node_offset += 10; + node_offset += 9; } }