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 44e5ed4 commit 848aedfCopy full SHA for 848aedf
app/components/Package/TableRow.vue
@@ -84,7 +84,11 @@ const compactNumberFormatter = useCompactNumberFormatter()
84
v-if="isColumnVisible('downloads')"
85
class="py-2 px-3 font-mono text-xs text-fg-muted text-end tabular-nums"
86
>
87
- {{ result.downloads?.weekly ? compactNumberFormatter.format(result.downloads.weekly) : '-' }}
+ {{
88
+ result.downloads?.weekly !== undefined
89
+ ? compactNumberFormatter.format(result.downloads.weekly)
90
+ : '-'
91
+ }}
92
</td>
93
94
<!-- Updated -->
0 commit comments