SinglestatPanel: fixed issue when value is zero, #1039

This commit is contained in:
Torkel Ödegaard
2014-11-11 14:55:23 +01:00
parent 4ec59e8211
commit 98037ca0c6
+3
View File
@@ -124,6 +124,9 @@ function (angular, app, _, TimeSeries, kbn, PanelMeta) {
$scope.getDecimalsForValue = function(value) {
var opts = {};
if (value === 0) {
return { decimals: 0, scaledDecimals: 0 };
}
var delta = value / 2;
var dec = -Math.floor(Math.log(delta) / Math.LN10);