fix: content render receiving undefined when converting to vnode (#2016)

This commit is contained in:
Joaquín Sánchez 2023-04-24 20:46:17 +02:00 committed by GitHub
parent ac4188274c
commit 59e418e2e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -66,6 +66,9 @@ function nodeToVNode(node: Node): VNode | string | null {
function treeToVNode(
input: Node,
): VNode | string | null {
if (!input)
return null
if (input.type === TEXT_NODE)
return decode(input.value)