jf_activity: fix infinite load

computeScrollInfo wasn't being called before the first detectScroll
call, because there is no search functionality (somehow, i think). Fixed
by calling it if _scroll.rowHeight is 0.
This commit is contained in:
Harvey Tindall
2026-03-01 16:24:09 +00:00
parent 60bf89bc02
commit d7fdf29c7c
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -2952,6 +2952,7 @@ class UserInfo extends PaginatedList {
}
this._search.setOrdering(Array.from(this.entries.keys()), "Date", true);
this.computeScrollInfo();
},
replaceWithNewItems: (resp: PaginatedDTO) => {
let entriesOnDOM = new Map<string, boolean>();