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 19aca4d commit cfbe0ceCopy full SHA for cfbe0ce
1 file changed
app/components/Package/MetricsBadges.vue
@@ -12,7 +12,7 @@ const { data: analysis, status } = usePackageAnalysis(
12
() => props.version,
13
)
14
15
-const isLoading = computed(() => status.value === 'pending')
+const isLoading = computed(() => status.value !== 'error' && !analysis.value)
16
17
// ESM support
18
const hasEsm = computed(() => {
0 commit comments