diff options
Diffstat (limited to 'src/client/app/common/scripts')
| -rw-r--r-- | src/client/app/common/scripts/paging.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/common/scripts/paging.ts b/src/client/app/common/scripts/paging.ts index 458ee7e5ca..4875ce620f 100644 --- a/src/client/app/common/scripts/paging.ts +++ b/src/client/app/common/scripts/paging.ts @@ -117,7 +117,7 @@ export default (opts) => ({ if (cancel) return; } - if (this.isScrollTop()) { + if (this.isScrollTop == null || this.isScrollTop()) { // Prepend the item this.items.unshift(item); |