We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ba4dc0 commit e17e936Copy full SHA for e17e936
packages/runtime-vapor/src/block.ts
@@ -70,7 +70,8 @@ export class DynamicFragment extends VaporFragment {
70
// if current nodes is a DynamicFragment, call its update with the fallback
71
// to handle nested dynamic fragment
72
if (this.nodes instanceof DynamicFragment) {
73
- this.nodes.update(this.fallback)
+ if (!this.nodes.fallback) this.nodes.fallback = this.fallback
74
+ this.nodes.update(this.nodes.fallback)
75
} else {
76
this.nodes =
77
(this.scope || (this.scope = new EffectScope())).run(this.fallback) ||
0 commit comments