mirror of
https://github.com/getnamingo/registry.git
synced 2025-08-04 00:31:50 +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
|
@ -316,16 +316,14 @@
|
|||
show: false,
|
||||
},
|
||||
type: 'category',
|
||||
categories: dates,
|
||||
labels: {
|
||||
formatter: function (value) {
|
||||
return value;
|
||||
}
|
||||
},
|
||||
categories: dates,
|
||||
},
|
||||
yaxis: {
|
||||
labels: {
|
||||
padding: 4
|
||||
padding: 4,
|
||||
formatter: function (value) {
|
||||
return value;
|
||||
}
|
||||
},
|
||||
},
|
||||
labels: dates,
|
||||
|
@ -437,7 +435,10 @@
|
|||
},
|
||||
yaxis: {
|
||||
labels: {
|
||||
padding: 4
|
||||
padding: 4,
|
||||
formatter: function (value) {
|
||||
return value;
|
||||
}
|
||||
},
|
||||
},
|
||||
colors: [tabler.getColor("primary"), tabler.getColor("red")],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue