Merge pull request #237 from cubedro/develop

added 2 decimals to avg block time
This commit is contained in:
Marian OANCΞA 2015-07-30 21:54:46 +03:00
commit 63956b42ed
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ angular.module('netStatsApp.filters', [])
.filter('avgTimeFilter', function() {
return function(time) {
if(time < 60)
return Math.round(time) + ' s';
return parseFloat(time).toFixed(2) + ' s';
return moment.duration(Math.round(time), 's').humanize();
};