summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-02-18 18:19:11 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2020-02-18 18:19:11 +0900
commit3d79e7a1361cd70d0a6264f52cfac7f16a40cae9 (patch)
treeb770c3e3104220747eb069338d045645c520e444 /src/client
parentImprement promo read (diff)
downloadsharkey-3d79e7a1361cd70d0a6264f52cfac7f16a40cae9.tar.gz
sharkey-3d79e7a1361cd70d0a6264f52cfac7f16a40cae9.tar.bz2
sharkey-3d79e7a1361cd70d0a6264f52cfac7f16a40cae9.zip
Improve paging
Diffstat (limited to 'src/client')
-rw-r--r--src/client/scripts/paging.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/scripts/paging.ts b/src/client/scripts/paging.ts
index 64c744e45d..3406f233c2 100644
--- a/src/client/scripts/paging.ts
+++ b/src/client/scripts/paging.ts
@@ -67,7 +67,7 @@ export default (opts) => ({
...params,
limit: this.pagination.noPaging ? (this.pagination.limit || 10) : (this.pagination.limit || 10) + 1,
}).then(items => {
- if (!this.pagination.noPaging && (items.length === (this.pagination.limit || 10) + 1)) {
+ if (!this.pagination.noPaging && (items.length > (this.pagination.limit || 10))) {
items.pop();
this.items = this.pagination.reversed ? [...items].reverse() : items;
this.more = true;
@@ -103,7 +103,7 @@ export default (opts) => ({
untilId: this.items[this.items.length - 1].id,
}),
}).then(items => {
- if (items.length === SECOND_FETCH_LIMIT + 1) {
+ if (items.length > SECOND_FETCH_LIMIT) {
items.pop();
this.items = this.pagination.reversed ? [...items].reverse().concat(this.items) : this.items.concat(items);
this.more = true;