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 42bb51f commit 8adbe94Copy full SHA for 8adbe94
personal/src/components/CVList.astro
@@ -21,7 +21,7 @@ const pastEntries = allCvEntries
21
<div class="cv-item">
22
<img
23
src={`https://directus.aaronczichon.de/assets/${entry.data.image.assetId}?w=150`}
24
- alt="Logo"
+ alt={entry.data.image.alt}
25
/>
26
</div>
27
<article class="cv-item">
personal/src/content/config.ts
@@ -34,7 +34,6 @@ const cvCollection = defineCollection({
34
assetId: z.string(),
35
alt: z.string(),
36
})
37
- .optional()
38
}),
39
});
40
// 3. Export a single `collections` object to register your collection(s)
0 commit comments