diff --git a/frontend/components/Editor/components/Paragraph.js b/frontend/components/Editor/components/Paragraph.js index a3d43ba7b..66993422d 100644 --- a/frontend/components/Editor/components/Paragraph.js +++ b/frontend/components/Editor/components/Paragraph.js @@ -10,12 +10,17 @@ export default function Link({ node, parent, children, + readOnly, }: Props) { const parentIsDocument = parent instanceof Document; const firstParagraph = parent && parent.nodes.get(1) === node; const lastParagraph = parent && parent.nodes.last() === node; const showPlaceholder = - parentIsDocument && firstParagraph && lastParagraph && !node.text; + !readOnly && + parentIsDocument && + firstParagraph && + lastParagraph && + !node.text; return (