diff --git a/ignite-template.js b/ignite-template.js index 25b76c9..39baf58 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -2523,7 +2523,12 @@ class list extends IgniteTemplate { items.forEach(item => { var template = this.forEachCallback(item, start); - template.construct(this.element.parentElement, this.element); + //If we have elements already, construct this item after the element at the current start. Otherwise use the placeholder element. + if (this.elements.length > 0) { + template.construct(this.element.parentElement, this.elements[start]); + } else { + template.construct(this.element.parentElement, this.element); + } if (this.reflecting) { this.reflectCallbacks.splice(start, 0, template.element.attachOnDisconnect(disconnect => this.onItemRemove(item)));