Compare commits

..

No commits in common. "a4d146b6786aaee79500d78dd1141f90c646c808" and "1068c0ea7d91109a75bbcf36fa3326885497ff5d" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@
const global = ref([]);
onMounted(async () => {
const items = await getItems({ collection: "global" });
const items = await getItems({ collection: "Global" });
global.value = items;
});