fix: accidental fp precision on flag and acp dash graphs

v1.18.x
Julian Lam 5 years ago
parent 14aed18449
commit bcbf98aa4c

@ -234,6 +234,7 @@ define('admin/general/dashboard', ['semver', 'Chart', 'translator', 'benchpress'
id: 'left-y-axis', id: 'left-y-axis',
ticks: { ticks: {
beginAtZero: true, beginAtZero: true,
precision: 0,
}, },
type: 'linear', type: 'linear',
position: 'left', position: 'left',
@ -246,6 +247,7 @@ define('admin/general/dashboard', ['semver', 'Chart', 'translator', 'benchpress'
ticks: { ticks: {
beginAtZero: true, beginAtZero: true,
suggestedMax: 10, suggestedMax: 10,
precision: 0,
}, },
type: 'linear', type: 'linear',
position: 'right', position: 'right',

@ -74,6 +74,7 @@ define('forum/flags/list', ['components', 'Chart'], function (components, Chart)
yAxes: [{ yAxes: [{
ticks: { ticks: {
beginAtZero: true, beginAtZero: true,
precision: 0,
}, },
}], }],
}, },

Loading…
Cancel
Save