fix: content render receiving undefined when converting to vnode (#2016)
parent
ac4188274c
commit
59e418e2e0
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue