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 cbcdc54 commit 47bd16eCopy full SHA for 47bd16e
app/components/Package/WeeklyDownloadStats.vue
@@ -201,7 +201,7 @@ const correctedDownloads = computed<WeeklyDataPoint[]>(() => {
201
202
const dataset = computed<VueUiSparklineDatasetItem[]>(() =>
203
correctedDownloads.value.map(d => ({
204
- value: d?.value ?? 0,
+ value: Math.ceil(d?.value ?? 0),
205
period: $t('package.trends.date_range', {
206
start: d.weekStart ?? '-',
207
end: d.weekEnd ?? '-',
0 commit comments