We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cc9d17 commit 8f79b84Copy full SHA for 8f79b84
1 file changed
app/components/Package/TrendsChart.vue
@@ -1540,7 +1540,7 @@ const chartConfig = computed<VueUiXyConfig>(() => {
1540
const rows = items
1541
.map((d: Record<string, any>) => {
1542
const label = String(d?.name ?? '').trim()
1543
- const raw = Math.round(Number(d?.value ?? 0))
+ const raw = Number(d?.value ?? 0)
1544
const v = compactNumberFormatter.value.format(Number.isFinite(raw) ? raw : 0)
1545
1546
if (!hasMultipleItems) {
0 commit comments