decreased block hash string length
This commit is contained in:
@@ -222,7 +222,7 @@ table td {
|
||||
}
|
||||
|
||||
.th-blockhash {
|
||||
width: 460px;
|
||||
width: 140px;
|
||||
}
|
||||
|
||||
.th-blocktime {
|
||||
|
||||
@@ -66,7 +66,7 @@ angular.module('netStatsApp.filters', [])
|
||||
})
|
||||
.filter('hashFilter', function() {
|
||||
return function(hash) {
|
||||
return hash.substr(0, 6) + '...' + hash.substr(58, 6);
|
||||
return hash.substr(0, 8) + '...' + hash.substr(56, 8);
|
||||
}
|
||||
})
|
||||
.filter('timeClass', function() {
|
||||
|
||||
Reference in New Issue
Block a user