Fixed a bug with lists where elements would be in the wrong order in the DOM.

This commit is contained in:
MattMo 2023-01-31 19:14:44 -08:00
parent edfac3782f
commit 7ba146443f

View File

@ -2278,11 +2278,7 @@ class list extends IgniteTemplate {
items.forEach(item => {
var template = this.forEachCallback(item, this.children.length);
if (this.elements.length > 0) {
template.construct(this.element.parentElement, this.elements[this.elements.length - 1].nextSibling);
} else {
template.construct(this.element.parentElement, this.element);
}
template.construct(this.element.parentElement, this.element);
//If we are reflecting, attach to the elements disconnect event.
if (this.reflecting) {
@ -2384,11 +2380,7 @@ class list extends IgniteTemplate {
items.forEach(item => {
var template = this.forEachCallback(item, start);
if (this.elements.length > 0) {
template.construct(this.element.parentElement, this.elements[start]);
} else {
template.construct(this.element.parentElement, this.element);
}
template.construct(this.element.parentElement, this.element);
if (this.reflecting) {
this.reflectCallbacks.splice(start, 0, template.element.attachOnDisconnect(disconnect => this.onItemRemove(item)));