From eae0d56d105340be60489af81014e549d1d67b8a Mon Sep 17 00:00:00 2001 From: Femke Reunes Date: Tue, 11 Aug 2026 11:55:31 +0200 Subject: [PATCH 1/2] ARC-3790: Add ie objects to carousel as an option --- .../BlockOverviewWithCarousel.editorconfig.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/src/react-admin/modules/content-page/components/blocks/BlockOverviewWithCarousel/BlockOverviewWithCarousel.editorconfig.ts b/ui/src/react-admin/modules/content-page/components/blocks/BlockOverviewWithCarousel/BlockOverviewWithCarousel.editorconfig.ts index 0883a813..2fade2f0 100644 --- a/ui/src/react-admin/modules/content-page/components/blocks/BlockOverviewWithCarousel/BlockOverviewWithCarousel.editorconfig.ts +++ b/ui/src/react-admin/modules/content-page/components/blocks/BlockOverviewWithCarousel/BlockOverviewWithCarousel.editorconfig.ts @@ -117,6 +117,7 @@ export const OVERVIEW_WITH_CAROUSEL_CONFIG = (position = 0): ContentBlockConfig AvoCoreContentPickerType.CONTENT_PAGE, AvoCoreContentPickerType.INTERNAL_LINK, AvoCoreContentPickerType.EXTERNAL_LINK, + AvoCoreContentPickerType.IE_OBJECT, ], }, }, From 90901063701a8863621c1f0c8104a77205cd6344 Mon Sep 17 00:00:00 2001 From: Femke Reunes Date: Tue, 11 Aug 2026 15:22:42 +0200 Subject: [PATCH 2/2] ARC-3790: Fix crash on nullpointer --- .../BlockOverviewWithCarousel/BlockOverviewWithCarousel.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/react-admin/modules/content-page/components/blocks/BlockOverviewWithCarousel/BlockOverviewWithCarousel.tsx b/ui/src/react-admin/modules/content-page/components/blocks/BlockOverviewWithCarousel/BlockOverviewWithCarousel.tsx index 4380b77d..e8553b36 100644 --- a/ui/src/react-admin/modules/content-page/components/blocks/BlockOverviewWithCarousel/BlockOverviewWithCarousel.tsx +++ b/ui/src/react-admin/modules/content-page/components/blocks/BlockOverviewWithCarousel/BlockOverviewWithCarousel.tsx @@ -23,7 +23,7 @@ export interface BlockOverviewWithCarouselProps extends DefaultComponentProps { buttonAltTitle?: string; buttonAction?: ButtonAction; elements: { - mediaItem: ButtonAction; + mediaItem?: ButtonAction; image: string; imageAlt: string; title: string; @@ -178,7 +178,7 @@ export const BlockOverviewWithCarousel: FunctionComponent