diff --git a/components/Block/Directory.vue b/components/Block/Directory.vue index 9656b8d0..a49d2279 100644 --- a/components/Block/Directory.vue +++ b/components/Block/Directory.vue @@ -79,7 +79,7 @@ const dirConfig = computed(() => { facetFields: ['module'], fieldMapping: { title: 'title', - // image: 'image', + image: 'thumbnail', description: 'description', href: (item: any) => `/features/${item.slug}`, module: 'module', diff --git a/types/schema/content/feature.ts b/types/schema/content/feature.ts index f04f47ab..ec9b3847 100644 --- a/types/schema/content/feature.ts +++ b/types/schema/content/feature.ts @@ -17,4 +17,5 @@ export interface Feature { module?: string | null; seo: Seo | null; media: BlockMedia | string | null; + thumbnail: string | File | null; }