diff --git a/public/js/controllers.js b/public/js/controllers.js index c7f86fa..345aa1f 100644 --- a/public/js/controllers.js +++ b/public/js/controllers.js @@ -27,7 +27,7 @@ function StatsCtrl($scope, $filter, socket, _, toastr) { $scope.latency = 0; - $scope.predicate = 'info.name'; + $scope.predicate = ['-stats.block.number', 'stats.block.propagation']; $scope.reverse = false; $scope.orderTable = function(predicate, reverse) diff --git a/public/js/filters.js b/public/js/filters.js index 971705c..d57ef04 100644 --- a/public/js/filters.js +++ b/public/js/filters.js @@ -105,7 +105,7 @@ angular.module('netStatsApp.filters', []) .filter('latencyClass', function() { return function(stats) { if(stats.active === false) - return 'text-danger'; + return 'text-gray'; if(stats.latency <= 100) return 'text-success'; @@ -226,7 +226,7 @@ angular.module('netStatsApp.filters', []) function mainClass(node, bestBlock) { if( ! node.active) - return 'text-danger'; + return 'text-gray'; if(node.peers === 0) return 'text-danger'; diff --git a/views/index.jade b/views/index.jade index 9bba26d..937b7d5 100644 --- a/views/index.jade +++ b/views/index.jade @@ -128,7 +128,7 @@ block content th.th-blocktime i.icon-time(data-toggle="tooltip", data-placement="top", title="Last block time", ng-click="orderTable('-stats.block.received', false)") th - i.icon-gas(data-toggle="tooltip", data-placement="top", title="Propagation time", ng-click="orderTable('stats.block.propagation', false)") + i.icon-gas(data-toggle="tooltip", data-placement="top", title="Propagation time", ng-click="orderTable(['-stats.block.number', 'stats.block.propagation'], false)") th.th-peerPropagationChart th i.icon-bulb(data-toggle="tooltip", data-placement="top", title="Up-time", ng-click="orderTable('-stats.uptime', false)")