From 489b626938cc4ec6f422e47a0c1589d23b892f9d Mon Sep 17 00:00:00 2001 From: sembauke Date: Thu, 16 Nov 2023 08:06:24 +0100 Subject: [PATCH] fix: allow base64 images --- apps/frontend/src/components/tiptap.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/frontend/src/components/tiptap.jsx b/apps/frontend/src/components/tiptap.jsx index 76b2d548d..5e40ebd8d 100644 --- a/apps/frontend/src/components/tiptap.jsx +++ b/apps/frontend/src/components/tiptap.jsx @@ -321,6 +321,7 @@ const Tiptap = ({ handleContentChange, user, content }) => { }), Image.configure({ inline: true, + allowBase64: true, HTMLAttributes: { class: "add-image-form", },