Skip to content

Commit 4934123

Browse files
committed
fix: update skeleton condition on package page
1 parent 1c4269a commit 4934123

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/pages/package/[[org]]/[name].vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ const showSkeleton = shallowRef(false)
774774
<!-- Scenario 1: SPA fallback — show skeleton (no real content to preserve) -->
775775
<!-- Scenario 2: SSR with missing payload — preserve server DOM, skip skeleton -->
776776
<PackageSkeleton
777-
v-if="showSkeleton || isSpaFallback || (!hasEmptyPayload && status === 'pending')"
777+
v-if="isSpaFallback || (!hasEmptyPayload && (showSkeleton || status === 'pending'))"
778778
/>
779779

780780
<!-- During hydration without payload, show captured server HTML as a static snapshot.

0 commit comments

Comments
 (0)