fix bug in pagination.

This commit is contained in:
Jason Schwarzenberger
2020-12-01 23:20:16 +13:00
parent daa49ede7e
commit 7f46646b9a
4 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
export async function preload(page) {
const { skip, limit } = {
skip: page.query.skip || 0,
limit: page.query.query || 20,
limit: page.query.limit || 20,
};
const res = await this.fetch(`index.json?skip=${skip}&limit=${limit}`);
const data = await res.json();