diff --git a/runtime/main/model/compiler.ts b/runtime/main/model/compiler.ts index a674c970..2676d7dd 100644 --- a/runtime/main/model/compiler.ts +++ b/runtime/main/model/compiler.ts @@ -311,7 +311,7 @@ function compileShown( if (isBlock(dest) && dest.children) { dest.children.push(fragBlock); } - if (meta.repeat) { + if (hasOwn(meta, 'repeat')) { newMeta.repeat = meta.repeat; } bindShown(vm, target, fragBlock, newMeta);