On list change list templates now reset themselves so any scroll positions get reset as well.

This commit is contained in:
Matt Mo 2021-10-27 11:26:19 -07:00
parent ba3f7e8095
commit f46e4e181c

View File

@ -2145,6 +2145,9 @@ class list extends IgniteTemplate {
IgniteRenderingContext.enter();
try {
//Reset the list so it's scroll resets too. ScrollTop is unreliable.
this.element.parentElement.parentElement.replaceChild(this.element.parentElement, this.element.parentElement);
this.construct(null); //The list changed, reconstruct this template.
} catch (error) {
console.error("An error occurred during onListChanged:", error);