We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 571ed42 commit 778f3a5Copy full SHA for 778f3a5
packages/runtime-core/src/renderer.ts
@@ -542,12 +542,10 @@ export function createRenderer<
542
543
// text
544
// This flag is matched when the element has only dynamic text children.
545
- // this flag is terminal (i.e. skips children diffing).
546
if (patchFlag & PatchFlags.TEXT) {
547
if (n1.children !== n2.children) {
548
hostSetElementText(el, n2.children as string)
549
}
550
- return // terminal
551
552
} else if (!optimized && dynamicChildren == null) {
553
// unoptimized, full diff
0 commit comments