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 98ad210 commit 5fd65b8Copy full SHA for 5fd65b8
1 file changed
app/pages/package/[[org]]/[name]/versions.vue
@@ -42,6 +42,7 @@ const { data: versionSummary } = useLazyAsyncData(
42
time: data.time as Record<string, string>,
43
}
44
},
45
+ { deep: false },
46
)
47
48
const distTags = computed(() => versionSummary.value?.distTags ?? {})
@@ -51,7 +52,7 @@ const versionTimes = computed(() => versionSummary.value?.time ?? {})
51
52
// ─── Phase 2: full metadata (loaded on first group expand) ────────────────────
53
// Fetches deprecated status, provenance, and exact times needed for version rows.
54
-const fullVersionMap = ref<Map<
55
+const fullVersionMap = shallowRef<Map<
56
string,
57
{ time?: string; deprecated?: string; hasProvenance: boolean }
58
> | null>(null)
0 commit comments