Skip to content

Commit

Permalink
Update admin.html
Browse files Browse the repository at this point in the history
Fixed #27 missing address listing in admin users list
  • Loading branch information
fancoder committed Oct 27, 2014
1 parent 31d19c5 commit 2b56da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/admin.html
Expand Up @@ -127,7 +127,7 @@
hashrate = hashrate / 1024;
i++;
}
return hashrate.toFixed(2) + byteUnits[i];
return parseInt(hashrate).toFixed(2) + byteUnits;
}

window.onhashchange = function() {
Expand Down

0 comments on commit 2b56da2

Please sign in to comment.