Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/components/Package/WeeklyDownloadStats.vue
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ const config = computed<VueUiSparklineConfig>(() => {
</script>

<template>
<div class="space-y-8 h-[110px] motion-safe:h-[140px]">
<div class="space-y-8">
<CollapsibleSection id="downloads" :title="$t('package.downloads.title')">
<template #actions>
<ButtonBase
Expand All @@ -280,7 +280,7 @@ const config = computed<VueUiSparklineConfig>(() => {
<span v-else-if="isLoadingWeeklyDownloads" class="min-w-6 min-h-6 -m-1 p-1" />
</template>

<div class="w-full overflow-hidden">
<div class="w-full overflow-hidden h-[110px] motion-safe:h-[140px]">
<template v-if="isLoadingWeeklyDownloads || hasWeeklyDownloads">
<ClientOnly>
<VueUiSparkline class="w-full max-w-xs" :dataset :config>
Expand Down
Loading