Fixed a minor bug where list splice wouldn't insert the item in the DOM at the correct position in the list.
This commit is contained in:
parent
a584eb68a7
commit
7e1e2b96ff
@ -2523,7 +2523,12 @@ class list extends IgniteTemplate {
|
||||
items.forEach(item => {
|
||||
var template = this.forEachCallback(item, start);
|
||||
|
||||
//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)));
|
||||
|
Loading…
x
Reference in New Issue
Block a user