From 092d866c730d8f42ae648ae35ea503dd5f2457f7 Mon Sep 17 00:00:00 2001 From: Anthony Lapenna Date: Thu, 7 Jul 2016 13:22:31 +1200 Subject: [PATCH] fix(ui): fix display issue with multiple nodes in Swarm view (#44) --- 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; } }