Parcourir la source

fix: page broke down while rendering node contained img and other elements (#14467)

tags/1.0.0
NFish il y a 8 mois
Parent
révision
ddf9eb1f9a
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3
    1
      web/app/components/base/markdown.tsx

+ 3
- 1
web/app/components/base/markdown.tsx Voir le fichier

@@ -211,7 +211,9 @@ const Paragraph = (paragraph: any) => {
return (
<>
<ImageGallery srcs={[children_node[0].properties.src]} />
<p>{paragraph.children.slice(1)}</p>
{
Array.isArray(paragraph.children) ? <p>{paragraph.children.slice(1)}</p> : null
}
</>
)
}

Chargement…
Annuler
Enregistrer