We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b22060 commit b9b8015Copy full SHA for b9b8015
packages/@glimmer/runtime/lib/vm/element-builder.ts
@@ -220,7 +220,7 @@ export class NewElementBuilder implements ElementBuilder {
220
const block = this.__pushRemoteElement(element, guid, insertBefore);
221
if (this.env.debugRenderTree) {
222
const namedArgs: Record<string, Reference> = {};
223
- if (insertBefore) {
+ if (insertBefore !== undefined) {
224
namedArgs['insertBefore'] = createConstRef(insertBefore, false);
225
}
226
this.env.debugRenderTree.create(block, {
0 commit comments