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

zio/stable
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
1 changed files with 3 additions and 0 deletions

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)