Fixes numbers in dashboard being wrongly formatted

This commit is contained in:
Pinga 2024-02-27 15:25:21 +02:00
parent 03a7a3a18d
commit 73432e2928

View file

@ -317,15 +317,13 @@
}, },
type: 'category', type: 'category',
categories: dates, categories: dates,
labels: {
formatter: function (value) {
return value;
}
},
}, },
yaxis: { yaxis: {
labels: { labels: {
padding: 4 padding: 4,
formatter: function (value) {
return value;
}
}, },
}, },
labels: dates, labels: dates,
@ -437,7 +435,10 @@
}, },
yaxis: { yaxis: {
labels: { labels: {
padding: 4 padding: 4,
formatter: function (value) {
return value;
}
}, },
}, },
colors: [tabler.getColor("primary"), tabler.getColor("red")], colors: [tabler.getColor("primary"), tabler.getColor("red")],