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 55fe150 commit 16ecea7Copy full SHA for 16ecea7
src/controller/Application.mjs
@@ -107,7 +107,12 @@ class Application extends Base {
107
value.onInitVnode(config.vnode, true);
108
109
// Clean up the config to prevent re-use
110
- delete config.vnode
+ delete config.vnode;
111
+
112
+ // Self-healing: if there happen to be different ids within vdom and vnode,
113
+ // the vdom worker will create patches as needed.
114
+ value.updateDepth = -1;
115
+ value.update()
116
} else {
117
// Standard Client-Side Rendering Path
118
await value.initVnode(true)
0 commit comments