diff --git a/astro/src/components/Content.astro b/astro/src/components/Content.astro index d2822d9..03a3a87 100644 --- a/astro/src/components/Content.astro +++ b/astro/src/components/Content.astro @@ -6,11 +6,11 @@ const { content } = Astro.props; const contentArray = getContentArray(content); --- -
"); const htmlImageArray: ( | string - | { src: string; width: number; height: number } + | { src: string; width: number; height: number, alt: string } )[] = []; let lastIndex = 0; while (true) { diff --git a/payload/src/collections/Media.ts b/payload/src/collections/Media.ts index df3e2a0..dd53854 100644 --- a/payload/src/collections/Media.ts +++ b/payload/src/collections/Media.ts @@ -18,6 +18,7 @@ export const Media: CollectionConfig = { { name: "alt", type: "text", + required: true }, ], }; diff --git a/payload/src/collections/Posts.ts b/payload/src/collections/Posts.ts index 3384ed8..e48cb5a 100644 --- a/payload/src/collections/Posts.ts +++ b/payload/src/collections/Posts.ts @@ -38,10 +38,7 @@ const Posts: CollectionConfig = { { name: "title", type: "text", - }, - { - name: "hallo", - type: "text", + required: true }, { name: "publishedDate", @@ -59,7 +56,7 @@ const Posts: CollectionConfig = { media: { fields: [ { - name: "imagel", + name: "image", type: "upload", relationTo: "media", required: true,