diff --git a/src/admin/components/forms/field-types/RichText/plugins/withHTML.tsx b/src/admin/components/forms/field-types/RichText/plugins/withHTML.tsx index 56b9841309..0a6ecbcf33 100644 --- a/src/admin/components/forms/field-types/RichText/plugins/withHTML.tsx +++ b/src/admin/components/forms/field-types/RichText/plugins/withHTML.tsx @@ -12,6 +12,7 @@ const ELEMENT_TAGS = { H6: () => ({ type: 'h6' }), LI: () => ({ type: 'li' }), OL: () => ({ type: 'ol' }), + P: () => ({}), PRE: () => ({ type: 'code' }), UL: () => ({ type: 'ul' }), };