forked from tanner/qotnews
fix bug in pagination.
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user