mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix: graph fix for decimals, bug introduced by #61313478063b0e0721f204847f3c0298ea8f593f
This commit is contained in:
parent
d4dd0222fa
commit
17cb3f6e6a
@ -498,7 +498,7 @@ coreModule.directive('grafanaGraph', function($rootScope, timeSrv, popoverSrv) {
|
||||
logBase: panel.yaxes[0].logBase || 1,
|
||||
min: panel.yaxes[0].min ? _.toNumber(panel.yaxes[0].min) : null,
|
||||
max: panel.yaxes[0].max ? _.toNumber(panel.yaxes[0].max) : null,
|
||||
tickDecimals: panel.yaxes[0].decimals !== null ? _.toNumber(panel.yaxes[0].decimals): null
|
||||
tickDecimals: panel.yaxes[0].decimals
|
||||
};
|
||||
|
||||
options.yaxes.push(defaults);
|
||||
|
Loading…
Reference in New Issue
Block a user