diff --git a/src/compile/render-dom/wrappers/Fragment.ts b/src/compile/render-dom/wrappers/Fragment.ts index 2e4bb633e7..ec1c83d1d9 100644 --- a/src/compile/render-dom/wrappers/Fragment.ts +++ b/src/compile/render-dom/wrappers/Fragment.ts @@ -118,6 +118,10 @@ export default class FragmentWrapper { if (!first.data) { first.var = null; this.nodes.shift(); + + if (this.nodes[0]) { + this.nodes[0].prev = null; + } } } }