fix: edit lists crashing and list rendering issue in Firefox (#2920)
* one liner fix editor * fix firefox rendering lists * moved fixes * moved fixes per ajbura
This commit is contained in:
parent
d186d31399
commit
341fedd932
2 changed files with 10 additions and 2 deletions
|
|
@ -157,10 +157,12 @@ const getInlineElement = (node: ChildNode, processText: ProcessTextCallback): In
|
|||
return children;
|
||||
}
|
||||
|
||||
return node.childNodes.flatMap((child) => getInlineElement(child, processText));
|
||||
const children = node.childNodes.flatMap((child) => getInlineElement(child, processText));
|
||||
if (children.length === 0) return [{ text: '' }];
|
||||
return children;
|
||||
}
|
||||
|
||||
return [];
|
||||
return [{ text: '' }];
|
||||
};
|
||||
|
||||
const parseBlockquoteNode = (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue