mirror of
https://github.com/getnamingo/registry.git
synced 2025-08-12 12:29:20 +02:00
Fixes numbers in dashboard being wrongly formatted
This commit is contained in:
parent
03a7a3a18d
commit
73432e2928
1 changed files with 9 additions and 8 deletions
|
@ -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")],
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue