fix(lint): fix linting issue

pull/262/head
Anthony Lapenna 2016-10-02 16:25:37 +13:00
parent c3b79e6cc2
commit 64c52348f3
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ function ($scope, Info, Version, Node) {
// Swarm filters // Swarm filters
$scope.swarm[systemStatus[2][0]] = systemStatus[2][1]; $scope.swarm[systemStatus[2][0]] = systemStatus[2][1];
// Swarm node count // Swarm node count
var nodes = systemStatus[0][1] == 'primary' ? systemStatus[3][1] : systemStatus[4][1]; var nodes = systemStatus[0][1] === 'primary' ? systemStatus[3][1] : systemStatus[4][1];
var node_count = parseInt(nodes, 10); var node_count = parseInt(nodes, 10);
$scope.swarm[systemStatus[3][0]] = node_count; $scope.swarm[systemStatus[3][0]] = node_count;
@ -59,7 +59,7 @@ function ($scope, Info, Version, Node) {
// First information for node1 available at element #4 of SystemStatus if connected to a primary // First information for node1 available at element #4 of SystemStatus if connected to a primary
// If connected to a replica, information for node1 is available at element #5 // If connected to a replica, information for node1 is available at element #5
// The next 10 elements are information related to the node // The next 10 elements are information related to the node
var node_offset = info[0][1] == 'primary' ? 4 : 5; var node_offset = info[0][1] === 'primary' ? 4 : 5;
for (i = 0; i < node_count; i++) { for (i = 0; i < node_count; i++) {
extractNodeInfo(info, node_offset); extractNodeInfo(info, node_offset);
node_offset += 9; node_offset += 9;