We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0009f2e commit 64ca982Copy full SHA for 64ca982
src/routes/team/[team]/[env]/app/[app]/utilization/+page.svelte
@@ -52,7 +52,7 @@
52
grid: {
53
bottom: 20,
54
top: 16,
55
- left: 40,
+ left: 80,
56
right: 51
57
},
58
animation: false,
@@ -98,7 +98,7 @@
98
yAxis: {
99
type: 'value',
100
axisLabel: {
101
- formatter: (value: number) => value.toLocaleString('en-GB', { maximumFractionDigits: 4 })
+ formatter: valueFormatter
102
}
103
104
series: [
@@ -243,7 +243,7 @@
243
? '-'
244
: prettyBytes(value * 1024 ** 3, {
245
locale: 'en',
246
- minimumFractionDigits: 2,
+ minimumFractionDigits: 0,
247
maximumFractionDigits: 2,
248
binary: true
249
})
0 commit comments