Compare commits

...

2 Commits

Author SHA1 Message Date
Valentin
a4d146b678 Merge branch 'main' into prod
correction de error.vue
2024-03-03 23:46:12 +01:00
Valentin
b3c8161d90 correction du nom de la collection dans error.vue 2024-03-03 23:45:27 +01:00

View File

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