From 4993dc37e2430067a92ec78389c9d9dce79d19db Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Thu, 17 Mar 2022 08:47:19 +0200 Subject: [PATCH] fix rich content not rendering stillimage nor links correctly --- src/components/rich_content/rich_content.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/rich_content/rich_content.jsx b/src/components/rich_content/rich_content.jsx index 383b29b3..97c51189 100644 --- a/src/components/rich_content/rich_content.jsx +++ b/src/components/rich_content/rich_content.jsx @@ -76,7 +76,7 @@ export default { const renderImage = (tag) => { return } @@ -222,7 +222,7 @@ export default { attrs.target = '_blank' const newChildren = [...children].reverse().map(processItemReverse).reverse() - return + return { newChildren } }