fixed totalDifficultyFilter, fixed gaslimit number format
This commit is contained in:
parent
815f62f3a8
commit
5f786d8a2b
@ -75,7 +75,7 @@ angular.module('netStatsApp.filters', [])
|
||||
return $sce.trustAsHtml('<span class="small">' + filter('number')(result.toFixed(1)) + ' <span class="small-hash">' + unit + 'H/s</span></span>');
|
||||
};
|
||||
}])
|
||||
.filter('totalDifficultyFilter', function() {
|
||||
.filter('totalDifficultyFilter', ['$sce', '$filter', function($sce, filter) {
|
||||
return function(hashes) {
|
||||
var result = hashes;
|
||||
var units = ['', 'K', 'M', 'G', 'T', 'P'];
|
||||
@ -87,9 +87,9 @@ angular.module('netStatsApp.filters', [])
|
||||
unit = units[i];
|
||||
}
|
||||
|
||||
return result.toFixed(2) + ' ' + unit + 'H';
|
||||
return $sce.trustAsHtml(filter('number')(result.toFixed(2)) + ' <span class="small-hash">' + unit + 'H</span>');
|
||||
};
|
||||
})
|
||||
}])
|
||||
.filter('nodeVersion', function($sce) {
|
||||
return function(version) {
|
||||
if(version)
|
||||
|
@ -55,8 +55,7 @@ block content
|
||||
i.icon-difficulty
|
||||
div.big-details-holder
|
||||
span.small-title difficulty
|
||||
span.big-details
|
||||
span.small-hash {{ lastDifficulty | totalDifficultyFilter }}
|
||||
span.big-details(ng-bind-html="lastDifficulty | totalDifficultyFilter")
|
||||
div.clearfix
|
||||
|
||||
div.clearfix
|
||||
@ -79,7 +78,7 @@ block content
|
||||
div.gasprice.text-info
|
||||
i.icon-gasprice
|
||||
span.small-title gas limit
|
||||
span.small-value {{ bestStats.block.gasLimit }} gas
|
||||
span.small-value {{ bestStats.block.gasLimit | number }} gas
|
||||
div.col-xs-6.col-sm-6.col-md-6.col-lg-2.stat-holder.box
|
||||
div.page-latency(class="{{ {active: true, latency: latency} | latencyClass }}")
|
||||
i.icon-clock
|
||||
|
Loading…
Reference in New Issue
Block a user